From: Shakeel Butt <shakeelb@google.com>
To: Roman Gushchin <guro@fb.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Linux MM <linux-mm@kvack.org>,
LKML <linux-kernel@vger.kernel.org>,
Kernel Team <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 <cgroups@vger.kernel.org>
Subject: Re: [PATCH v3 3/7] mm: introduce __memcg_kmem_uncharge_memcg()
Date: Fri, 10 May 2019 17:33:10 -0700 [thread overview]
Message-ID: <CALvZod4nvTnxvb2UKxvRiYMH9NRcuhat5FwvPDOFMCzZ+aeLxQ@mail.gmail.com> (raw)
In-Reply-To: <20190508202458.550808-4-guro@fb.com>
From: Roman Gushchin <guro@fb.com>
Date: Wed, May 8, 2019 at 1:30 PM
To: Andrew Morton, Shakeel Butt
Cc: <linux-mm@kvack.org>, <linux-kernel@vger.kernel.org>,
<kernel-team@fb.com>, Johannes Weiner, Michal Hocko, Rik van Riel,
Christoph Lameter, Vladimir Davydov, <cgroups@vger.kernel.org>, Roman
Gushchin
> Let's separate the page counter modification code out of
> __memcg_kmem_uncharge() in a way similar to what
> __memcg_kmem_charge() and __memcg_kmem_charge_memcg() work.
>
> This will allow to reuse this code later using a new
> memcg_kmem_uncharge_memcg() wrapper, which calls
> __memcg_kmem_unchare_memcg() if memcg_kmem_enabled()
__memcg_kmem_uncharge_memcg()
> check is passed.
>
> Signed-off-by: Roman Gushchin <guro@fb.com>
Reviewed-by: Shakeel Butt <shakeelb@google.com>
> ---
> include/linux/memcontrol.h | 10 ++++++++++
> mm/memcontrol.c | 25 +++++++++++++++++--------
> 2 files changed, 27 insertions(+), 8 deletions(-)
>
> diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h
> index 36bdfe8e5965..deb209510902 100644
> --- a/include/linux/memcontrol.h
> +++ b/include/linux/memcontrol.h
> @@ -1298,6 +1298,8 @@ int __memcg_kmem_charge(struct page *page, gfp_t gfp, int order);
> void __memcg_kmem_uncharge(struct page *page, int order);
> int __memcg_kmem_charge_memcg(struct page *page, gfp_t gfp, int order,
> struct mem_cgroup *memcg);
> +void __memcg_kmem_uncharge_memcg(struct mem_cgroup *memcg,
> + unsigned int nr_pages);
>
> extern struct static_key_false memcg_kmem_enabled_key;
> extern struct workqueue_struct *memcg_kmem_cache_wq;
> @@ -1339,6 +1341,14 @@ static inline int memcg_kmem_charge_memcg(struct page *page, gfp_t gfp,
> return __memcg_kmem_charge_memcg(page, gfp, order, memcg);
> return 0;
> }
> +
> +static inline void memcg_kmem_uncharge_memcg(struct page *page, int order,
> + struct mem_cgroup *memcg)
> +{
> + if (memcg_kmem_enabled())
> + __memcg_kmem_uncharge_memcg(memcg, 1 << order);
> +}
> +
> /*
> * helper for accessing a memcg's index. It will be used as an index in the
> * child cache array in kmem_cache, and also to derive its name. This function
> diff --git a/mm/memcontrol.c b/mm/memcontrol.c
> index 48a8f1c35176..b2c39f187cbb 100644
> --- a/mm/memcontrol.c
> +++ b/mm/memcontrol.c
> @@ -2750,6 +2750,22 @@ int __memcg_kmem_charge(struct page *page, gfp_t gfp, int order)
> css_put(&memcg->css);
> return ret;
> }
> +
> +/**
> + * __memcg_kmem_uncharge_memcg: uncharge a kmem page
> + * @memcg: memcg to uncharge
> + * @nr_pages: number of pages to uncharge
> + */
> +void __memcg_kmem_uncharge_memcg(struct mem_cgroup *memcg,
> + unsigned int nr_pages)
> +{
> + if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
> + page_counter_uncharge(&memcg->kmem, nr_pages);
> +
> + page_counter_uncharge(&memcg->memory, nr_pages);
> + if (do_memsw_account())
> + page_counter_uncharge(&memcg->memsw, nr_pages);
> +}
> /**
> * __memcg_kmem_uncharge: uncharge a kmem page
> * @page: page to uncharge
> @@ -2764,14 +2780,7 @@ void __memcg_kmem_uncharge(struct page *page, int order)
> return;
>
> VM_BUG_ON_PAGE(mem_cgroup_is_root(memcg), page);
> -
> - if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
> - page_counter_uncharge(&memcg->kmem, nr_pages);
> -
> - page_counter_uncharge(&memcg->memory, nr_pages);
> - if (do_memsw_account())
> - page_counter_uncharge(&memcg->memsw, nr_pages);
> -
> + __memcg_kmem_uncharge_memcg(memcg, nr_pages);
> page->mem_cgroup = NULL;
>
> /* slab pages do not have PageKmemcg flag set */
> --
> 2.20.1
>
next prev parent reply other threads:[~2019-05-11 0:33 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 [this message]
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 ` [PATCH v3 7/7] mm: fix /proc/kpagecgroup interface for slab pages Roman Gushchin
2019-05-11 0:34 ` 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=CALvZod4nvTnxvb2UKxvRiYMH9NRcuhat5FwvPDOFMCzZ+aeLxQ@mail.gmail.com \
--to=shakeelb@google.com \
--cc=akpm@linux-foundation.org \
--cc=cgroups@vger.kernel.org \
--cc=cl@linux.com \
--cc=guro@fb.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=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;
as well as URLs for NNTP newsgroup(s).