[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5035F3FC.202@monom.org>
Date: Thu, 23 Aug 2012 11:12:28 +0200
From: Daniel Wagner <wagi@...om.org>
To: Glauber Costa <glommer@...allels.com>
CC: Neil Horman <nhorman@...driver.com>, netdev@...r.kernel.org,
cgroups@...r.kernel.org,
Daniel Wagner <daniel.wagner@...-carit.de>,
"David S. Miller" <davem@...emloft.net>,
Gao feng <gaofeng@...fujitsu.com>,
Jamal Hadi Salim <jhs@...atatu.com>,
John Fastabend <john.r.fastabend@...el.com>,
Li Zefan <lizefan@...wei.com>, Tejun Heo <tj@...nel.org>
Subject: Re: [PATCH v1 3/5] cgroup: Protect access to task_cls_classid() when
built as module
On 21.08.2012 11:12, Glauber Costa wrote:
> On 08/20/2012 09:03 PM, Neil Horman wrote:
>>>> 2) Keep a separate internal counter to track the number of cgroup instances
>>>>>> so that you only inc the static key on the first create and dec it on the last
>>>>>> delete.
>>>>
>>>> If I got you right, than this would not be different then direclty using
>>>> static_key_slow_[inc|dec].
>>>>
>> As long as a cgroup subsystems ->destroy method is only called when the
>> subsystem is being removed, then I think thats correct. I'm not 100% sure thats
>> the case though.
>>
> THAT is correct, but not the call itself. ->destroy() is called with the
> cgroup_lock held, and there is a lockdep dependency created by cpuset
> that prevents the cpu_hotplug lock, taken by static branch updates, to
> be taken inside cgroup_lock.
>
> So unless cpuset is fixed - which is a major work, we can't do
> static_branch updates while holding the cgroup_lock.
Thanks a lot for the info on this problem. I have spend the last days
trying to figure out how you have solved this in memcg. It looks like
complex and fragile. So I rather avoid enabling/disabling the static
branch in cgrp_create()/cgroup_destroy() and do it on module init/exit
as it is done currently with the id assigment.
Initially I wanted to optimize the task_cls_classid() path, so that only
when a cgroup really exists we spent time in there. Though as soon the
controller is registered to the cgroup core, the code path is enabled.
That means when cls is builtin it is used all the time (even though no
one is using it). In the module case, it is the same. task_cls_classid()
path is used right after module init.
So there is no need to move the enabling/disabling of the static branch
at this point to create/destroy.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists