From: Roman Gushchin <guro@fb.com>
To: Andrew Morton <akpm@linux-foundation.org>,
Shakeel Butt <shakeelb@google.com>
Cc: <linux-mm@kvack.org>, <linux-kernel@vger.kernel.org>,
<kernel-team@fb.com>, Johannes Weiner <hannes@cmpxchg.org>,
Michal Hocko <mhocko@kernel.org>, Rik van Riel <riel@surriel.com>,
Christoph Lameter <cl@linux.com>,
Vladimir Davydov <vdavydov.dev@gmail.com>,
<cgroups@vger.kernel.org>, Roman Gushchin <guro@fb.com>
Subject: [PATCH v3 7/7] mm: fix /proc/kpagecgroup interface for slab pages
Date: Wed, 8 May 2019 13:24:58 -0700 [thread overview]
Message-ID: <20190508202458.550808-8-guro@fb.com> (raw)
In-Reply-To: <20190508202458.550808-1-guro@fb.com>
Switching to an indirect scheme of getting mem_cgroup pointer for
!root slab pages broke /proc/kpagecgroup interface for them.
Let's fix it by learning page_cgroup_ino() how to get memcg
pointer for slab pages.
Reported-by: Shakeel Butt <shakeelb@google.com>
Signed-off-by: Roman Gushchin <guro@fb.com>
---
mm/memcontrol.c | 5 ++++-
mm/slab.h | 21 +++++++++++++++++++++
mm/slab_common.c | 1 +
3 files changed, 26 insertions(+), 1 deletion(-)
diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index 6e4d9ed16069..8114838759f6 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -494,7 +494,10 @@ ino_t page_cgroup_ino(struct page *page)
unsigned long ino = 0;
rcu_read_lock();
- memcg = READ_ONCE(page->mem_cgroup);
+ if (PageSlab(page))
+ memcg = memcg_from_slab_page(page);
+ else
+ memcg = READ_ONCE(page->mem_cgroup);
while (memcg && !(memcg->css.flags & CSS_ONLINE))
memcg = parent_mem_cgroup(memcg);
if (memcg)
diff --git a/mm/slab.h b/mm/slab.h
index acdc1810639d..cb684fbe2cc2 100644
--- a/mm/slab.h
+++ b/mm/slab.h
@@ -256,6 +256,22 @@ static inline struct kmem_cache *memcg_root_cache(struct kmem_cache *s)
return s->memcg_params.root_cache;
}
+static inline struct mem_cgroup *memcg_from_slab_page(struct page *page)
+{
+ struct kmem_cache *s;
+
+ WARN_ON_ONCE(!rcu_read_lock_held());
+
+ if (PageTail(page))
+ page = compound_head(page);
+
+ s = READ_ONCE(page->slab_cache);
+ if (s && !is_root_cache(s))
+ return rcu_dereference(s->memcg_params.memcg);
+
+ return NULL;
+}
+
static __always_inline int memcg_charge_slab(struct page *page,
gfp_t gfp, int order,
struct kmem_cache *s)
@@ -338,6 +354,11 @@ static inline struct kmem_cache *memcg_root_cache(struct kmem_cache *s)
return s;
}
+static inline struct mem_cgroup *memcg_from_slab_page(struct page *page)
+{
+ return NULL;
+}
+
static inline int memcg_charge_slab(struct page *page, gfp_t gfp, int order,
struct kmem_cache *s)
{
diff --git a/mm/slab_common.c b/mm/slab_common.c
index 36673a43ed31..0cfdad0a0aac 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -253,6 +253,7 @@ static void memcg_unlink_cache(struct kmem_cache *s)
list_del(&s->memcg_params.kmem_caches_node);
mem_cgroup_put(rcu_dereference_protected(s->memcg_params.memcg,
lockdep_is_held(&slab_mutex)));
+ rcu_assign_pointer(s->memcg_params.memcg, NULL);
}
}
#else
--
2.20.1
next prev parent reply other threads:[~2019-05-08 20:41 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-08 20:24 [PATCH v3 0/7] mm: reparent slab memory on cgroup removal Roman Gushchin
2019-05-08 20:24 ` [PATCH v3 1/7] mm: postpone kmem_cache memcg pointer initialization to memcg_link_cache() Roman Gushchin
2019-05-11 0:32 ` Shakeel Butt
2019-05-08 20:24 ` [PATCH v3 2/7] mm: generalize postponed non-root kmem_cache deactivation Roman Gushchin
2019-05-11 0:33 ` Shakeel Butt
2019-05-08 20:24 ` [PATCH v3 3/7] mm: introduce __memcg_kmem_uncharge_memcg() Roman Gushchin
2019-05-11 0:33 ` Shakeel Butt
2019-05-08 20:24 ` [PATCH v3 4/7] mm: unify SLAB and SLUB page accounting Roman Gushchin
2019-05-11 0:33 ` Shakeel Butt
2019-05-13 18:01 ` Christopher Lameter
2019-05-08 20:24 ` [PATCH v3 5/7] mm: rework non-root kmem_cache lifecycle management Roman Gushchin
2019-05-11 0:33 ` Shakeel Butt
2019-05-08 20:24 ` [PATCH v3 6/7] mm: reparent slab memory on cgroup removal Roman Gushchin
2019-05-11 0:34 ` Shakeel Butt
2019-05-08 20:24 ` Roman Gushchin [this message]
2019-05-11 0:34 ` [PATCH v3 7/7] mm: fix /proc/kpagecgroup interface for slab pages Shakeel Butt
2019-05-11 0:32 ` [PATCH v3 0/7] mm: reparent slab memory on cgroup removal Shakeel Butt
2019-05-13 20:21 ` Roman Gushchin
2019-05-14 19:22 ` Shakeel Butt
2019-05-14 20:04 ` Roman Gushchin
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=20190508202458.550808-8-guro@fb.com \
--to=guro@fb.com \
--cc=akpm@linux-foundation.org \
--cc=cgroups@vger.kernel.org \
--cc=cl@linux.com \
--cc=hannes@cmpxchg.org \
--cc=kernel-team@fb.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@kernel.org \
--cc=riel@surriel.com \
--cc=shakeelb@google.com \
--cc=vdavydov.dev@gmail.com \
/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