linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Glauber Costa <glommer@gmail.com>
To: Michal Hocko <mhocko@suse.cz>
Cc: Glauber Costa <glommer@parallels.com>,
	Glauber Costa <glommer@openvz.org>,
	linux-mm@kvack.org, cgroups@vger.kernel.org,
	Tejun Heo <tj@kernel.org>, Johannes Weiner <hannes@cmpxchg.org>,
	kamezawa.hiroyu@jp.fujitsu.com
Subject: Re: [PATCH] memcg: do not account memory used for cache creation
Date: Fri, 07 Jun 2013 18:45:17 +0400	[thread overview]
Message-ID: <51B1F1FD.7000002@gmail.com> (raw)
In-Reply-To: <20130607141204.GG8117@dhcp22.suse.cz>

On 06/07/2013 06:12 PM, Michal Hocko wrote:
> On Fri 07-06-13 14:11:53, Glauber Costa wrote:
>> On 06/07/2013 01:21 PM, Michal Hocko wrote:
>>> On Tue 04-06-13 18:10:59, Glauber Costa wrote:
>>>> The memory we used to hold the memcg arrays is currently accounted to
>>>> the current memcg.
>>>
>>> Maybe I have missed a train but I thought that only some caches are
>>> tracked and those have to be enabled explicitly by using __GFP_KMEMCG in
>>> gfp flags.
>>
>> No, all caches are tracked. This was set a long time ago, and only a
>> very few initial versions differed from this. This barely changed over
>> the lifetime of the memcg patchset.
>>
>> You probably got confused, due to the fact that only some *allocations*
>
> OK, I was really imprecise. Of course any type of cache might be tracked
> should the allocation (which takes gfp) say so. What I have missed is
> that not only stack allocations say so but also kmalloc itself enforces
> that rather than the actual caller of kmalloc. This is definitely new
> to me. And it is quite confusing that the flag is set only for large
> allocations (kmalloc_order) or am I just missing other parts where
> __GFP_KMEMCG is set unconditionally?
>
> I really have to go and dive into the code.
>

Here is where you are getting your confusion: we don't track caches, we 
track *pages*.

Everytime you pass GFP_KMEMCG to a *page* allocation, it gets tracked.
Every memcg cache - IOW, a memcg copy of a slab cache, sets GFP_KMEMCG 
for all its allocations.

Now, the slub - and this is really an implementation detail - doesn't 
have caches for high order kmalloc caches. Instead, it gets pages 
directly from the page allocator. So we have to mark them explicitly. 
(they are a cache, they are just not implemented as such)

The slab doesn't do that, so all kmalloc caches are just normal caches.

Also note that kmalloc is a *kind* of cache, but not *the caches*. Here 
we are talking dentries, inodes, everything. We track *pages* allocated 
for all those caches.


>> are tracked, but in particular, all cache + stack ones are. All child
>> caches that are created set the __GFP_KMEMCG flag, because those pages
>> should all belong to a cgroup.
>>
>>>
>>> But d79923fa "sl[au]b: allocate objects from memcg cache" seems to be
>>> setting gfp unconditionally for large caches. The changelog doesn't
>>> explain why, though? This is really confusing.
>> For all caches.
>>
>> Again, not all *allocations* are market, but all cache allocations are.
>> All pages that belong to a memcg cache should obviously be accounted.
>
> What is memcg cache?
>

A memcg-local copy of a slab cache.

> Sorry about the offtopic question but why only large allocations are
> marked for tracking? The changelog doesn't mention that.
>

Don't worry about the question. As for the large allocations, I hope the 
answer I provided below addresses it. If you are still not getting it, 
let me know.


--
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>

  reply	other threads:[~2013-06-07 14:45 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-04 14:10 [PATCH] memcg: do not account memory used for cache creation Glauber Costa
2013-06-07  9:21 ` Michal Hocko
2013-06-07 10:11   ` Glauber Costa
2013-06-07 14:12     ` Michal Hocko
2013-06-07 14:45       ` Glauber Costa [this message]
2013-06-07 15:54         ` Michal Hocko
2013-06-09 11:57           ` Glauber Costa

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=51B1F1FD.7000002@gmail.com \
    --to=glommer@gmail.com \
    --cc=cgroups@vger.kernel.org \
    --cc=glommer@openvz.org \
    --cc=glommer@parallels.com \
    --cc=hannes@cmpxchg.org \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.cz \
    --cc=tj@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 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).