From: Vladimir Davydov <vdavydov@parallels.com>
To: akpm@linux-foundation.org
Cc: hannes@cmpxchg.org, mhocko@suse.cz, glommer@gmail.com,
david@fromorbit.com, viro@zeniv.linux.org.uk, gthelen@google.com,
mgorman@suse.de, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: [PATCH -mm 5/6] fs: make shrinker memcg aware
Date: Mon, 28 Jul 2014 13:31:27 +0400 [thread overview]
Message-ID: <7fe5b4cbc8263a3d284b3056c6cd995724da50ce.1406536261.git.vdavydov@parallels.com> (raw)
In-Reply-To: <cover.1406536261.git.vdavydov@parallels.com>
Now, to make any list_lru-based shrinker memcg aware we should only
initialize its list_lru as memcg-enabled. Let's do it for the general FS
shrinker (super_block::s_shrink) and mark it as memcg aware.
There are other FS-specific shrinkers that use list_lru for storing
objects, such as XFS and GFS2 dquot cache shrinkers, but since they
reclaim objects that are shared among different cgroups, there is no
point making them memcg aware.
Signed-off-by: Vladimir Davydov <vdavydov@parallels.com>
---
fs/super.c | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/fs/super.c b/fs/super.c
index 477102d59c7e..2e5ed2b51b37 100644
--- a/fs/super.c
+++ b/fs/super.c
@@ -34,6 +34,7 @@
#include <linux/cleancache.h>
#include <linux/fsnotify.h>
#include <linux/lockdep.h>
+#include <linux/memcontrol.h>
#include "internal.h"
@@ -187,9 +188,9 @@ static struct super_block *alloc_super(struct file_system_type *type, int flags)
INIT_HLIST_BL_HEAD(&s->s_anon);
INIT_LIST_HEAD(&s->s_inodes);
- if (list_lru_init(&s->s_dentry_lru, false))
+ if (list_lru_init(&s->s_dentry_lru, true))
goto fail;
- if (list_lru_init(&s->s_inode_lru, false))
+ if (list_lru_init(&s->s_inode_lru, true))
goto fail;
init_rwsem(&s->s_umount);
@@ -225,7 +226,7 @@ static struct super_block *alloc_super(struct file_system_type *type, int flags)
s->s_shrink.scan_objects = super_cache_scan;
s->s_shrink.count_objects = super_cache_count;
s->s_shrink.batch = 1024;
- s->s_shrink.flags = SHRINKER_NUMA_AWARE;
+ s->s_shrink.flags = SHRINKER_NUMA_AWARE | SHRINKER_MEMCG_AWARE;
return s;
fail:
@@ -280,6 +281,16 @@ void deactivate_locked_super(struct super_block *s)
unregister_shrinker(&s->s_shrink);
fs->kill_sb(s);
+ /*
+ * list_lru_destroy() may sleep on memcg-aware lrus. Since
+ * put_super() calls destroy_super() under a spin lock, we must
+ * unregister lrus from memcg here to avoid sleeping in atomic
+ * context. It's safe, because by the time we get here, lrus
+ * must be empty.
+ */
+ memcg_unregister_list_lru(&s->s_dentry_lru);
+ memcg_unregister_list_lru(&s->s_inode_lru);
+
put_filesystem(fs);
put_super(s);
} else {
--
1.7.10.4
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2014-07-28 9:32 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-28 9:31 [PATCH -mm 0/6] Per-memcg slab shrinkers Vladimir Davydov
2014-07-28 9:31 ` [PATCH -mm 1/6] list_lru, shrinkers: introduce list_lru_shrink_{count,walk} Vladimir Davydov
2014-07-28 9:31 ` [PATCH -mm 2/6] fs: consolidate {nr,free}_cached_objects args in shrink_control Vladimir Davydov
2014-07-28 9:31 ` [PATCH -mm 3/6] vmscan: shrink slab on memcg pressure Vladimir Davydov
2014-07-28 9:31 ` [PATCH -mm 4/6] list_lru: add per-memcg lists Vladimir Davydov
2014-07-28 9:31 ` Vladimir Davydov [this message]
2014-07-28 9:31 ` [PATCH -mm 6/6] memcg: iterator: do not skip offline css Vladimir Davydov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7fe5b4cbc8263a3d284b3056c6cd995724da50ce.1406536261.git.vdavydov@parallels.com \
--to=vdavydov@parallels.com \
--cc=akpm@linux-foundation.org \
--cc=david@fromorbit.com \
--cc=glommer@gmail.com \
--cc=gthelen@google.com \
--cc=hannes@cmpxchg.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mgorman@suse.de \
--cc=mhocko@suse.cz \
--cc=viro@zeniv.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox