From: Vladimir Davydov <vdavydov@parallels.com>
To: akpm@linux-foundation.org
Cc: mhocko@suse.cz, hannes@cmpxchg.org, glommer@gmail.com,
cl@linux-foundation.org, penberg@kernel.org,
linux-kernel@vger.kernel.org, linux-mm@kvack.org,
devel@openvz.org
Subject: [PATCH -mm 0/4] memcg-vs-slab cleanup
Date: Wed, 9 Apr 2014 19:02:29 +0400 [thread overview]
Message-ID: <cover.1397054470.git.vdavydov@parallels.com> (raw)
Hi,
This patchset does a bit of cleanup in the kmemcg implementation
hopefully making it more readable.
It requires the following two patches applied on top of the mmotm tree:
[PATCH -mm v2 1/2] sl[au]b: charge slabs to kmemcg explicitly
[PATCH -mm v2.2] mm: get rid of __GFP_KMEMCG
(see https://lkml.org/lkml/2014/4/1/100)
Thanks,
Vladimir Davydov (4):
memcg, slab: do not schedule cache destruction when last page goes
away
memcg, slab: merge memcg_{bind,release}_pages to
memcg_{un}charge_slab
memcg, slab: change memcg::slab_caches_mutex vs slab_mutex locking
order
memcg, slab: remove memcg_cache_params::destroy work
include/linux/memcontrol.h | 15 +---
include/linux/slab.h | 8 +-
mm/memcontrol.c | 209 +++++++++++++++++---------------------------
mm/slab.c | 2 -
mm/slab.h | 28 +-----
mm/slab_common.c | 22 ++---
mm/slub.c | 2 -
7 files changed, 94 insertions(+), 192 deletions(-)
--
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>
WARNING: multiple messages have this Message-ID (diff)
From: Vladimir Davydov <vdavydov@parallels.com>
To: <akpm@linux-foundation.org>
Cc: <mhocko@suse.cz>, <hannes@cmpxchg.org>, <glommer@gmail.com>,
<cl@linux-foundation.org>, <penberg@kernel.org>,
<linux-kernel@vger.kernel.org>, <linux-mm@kvack.org>,
<devel@openvz.org>
Subject: [PATCH -mm 0/4] memcg-vs-slab cleanup
Date: Wed, 9 Apr 2014 19:02:29 +0400 [thread overview]
Message-ID: <cover.1397054470.git.vdavydov@parallels.com> (raw)
Hi,
This patchset does a bit of cleanup in the kmemcg implementation
hopefully making it more readable.
It requires the following two patches applied on top of the mmotm tree:
[PATCH -mm v2 1/2] sl[au]b: charge slabs to kmemcg explicitly
[PATCH -mm v2.2] mm: get rid of __GFP_KMEMCG
(see https://lkml.org/lkml/2014/4/1/100)
Thanks,
Vladimir Davydov (4):
memcg, slab: do not schedule cache destruction when last page goes
away
memcg, slab: merge memcg_{bind,release}_pages to
memcg_{un}charge_slab
memcg, slab: change memcg::slab_caches_mutex vs slab_mutex locking
order
memcg, slab: remove memcg_cache_params::destroy work
include/linux/memcontrol.h | 15 +---
include/linux/slab.h | 8 +-
mm/memcontrol.c | 209 +++++++++++++++++---------------------------
mm/slab.c | 2 -
mm/slab.h | 28 +-----
mm/slab_common.c | 22 ++---
mm/slub.c | 2 -
7 files changed, 94 insertions(+), 192 deletions(-)
--
1.7.10.4
next reply other threads:[~2014-04-09 15:02 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-09 15:02 Vladimir Davydov [this message]
2014-04-09 15:02 ` [PATCH -mm 0/4] memcg-vs-slab cleanup Vladimir Davydov
2014-04-09 15:02 ` [PATCH -mm 1/4] memcg, slab: do not schedule cache destruction when last page goes away Vladimir Davydov
2014-04-09 15:02 ` Vladimir Davydov
2014-04-15 2:16 ` Johannes Weiner
2014-04-15 2:16 ` Johannes Weiner
2014-04-15 6:24 ` Vladimir Davydov
2014-04-15 6:24 ` Vladimir Davydov
2014-04-15 15:17 ` Christoph Lameter
2014-04-15 15:17 ` Christoph Lameter
2014-04-15 19:08 ` Vladimir Davydov
2014-04-15 19:08 ` Vladimir Davydov
2014-04-15 19:32 ` Christoph Lameter
2014-04-15 19:32 ` Christoph Lameter
2014-04-09 15:02 ` [PATCH -mm 2/4] memcg, slab: merge memcg_{bind,release}_pages to memcg_{un}charge_slab Vladimir Davydov
2014-04-09 15:02 ` Vladimir Davydov
2014-04-09 15:02 ` [PATCH -mm 3/4] memcg, slab: change memcg::slab_caches_mutex vs slab_mutex locking order Vladimir Davydov
2014-04-09 15:02 ` Vladimir Davydov
2014-04-09 15:02 ` [PATCH -mm 4/4] memcg, slab: remove memcg_cache_params::destroy work Vladimir Davydov
2014-04-09 15:02 ` 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=cover.1397054470.git.vdavydov@parallels.com \
--to=vdavydov@parallels.com \
--cc=akpm@linux-foundation.org \
--cc=cl@linux-foundation.org \
--cc=devel@openvz.org \
--cc=glommer@gmail.com \
--cc=hannes@cmpxchg.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.cz \
--cc=penberg@kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.