README: add small blurb on rlimit memlocked (ulimit -l)

Signed-off-by: Jens Axboe <axboe@kernel.dk>
diff --git a/README b/README
index 6471964..98ca767 100644
--- a/README
+++ b/README
@@ -15,4 +15,18 @@
 
 https://lore.kernel.org/io-uring/
 
-Jens Axboe 2019-08-05
+
+ulimit settings
+---------------
+
+io_uring accounts memory it needs under the rlimit memlocked option, which
+can be quite low on some setups (64K). The default is usually enough for
+most use cases, but bigger rings or things like registered buffers deplete
+it quickly. root isn't under this restriction, but regular users are. Going
+into detail on how to bump the limit on various systems is beyond the scope
+of this little blurb, but check /etc/security/limits.conf for user specific
+settings, or /etc/systemd/user.conf and /etc/systemd/system.conf for systemd
+setups.
+
+
+Jens Axboe 2019-11-10