]> git.baikalelectronics.ru Git - kernel.git/commit
cgroup: fix unbalanced locking
authorZefan Li <lizefan@huawei.com>
Thu, 18 Sep 2014 09:28:46 +0000 (17:28 +0800)
committerTejun Heo <tj@kernel.org>
Thu, 18 Sep 2014 16:32:52 +0000 (12:32 -0400)
commit78ad9dfd7b56ad7bb3842d885a2abd9b16d891f5
treefa9d81be8ec27c49e3424fc4b2e30f41c2add9a5
parent32da4824a789760d928f8dd20777b2cd38525e37
cgroup: fix unbalanced locking

cgroup_pidlist_start() holds cgrp->pidlist_mutex and then calls
pidlist_array_load(), and cgroup_pidlist_stop() releases the mutex.

It is wrong that we release the mutex in the failure path in
pidlist_array_load(), because cgroup_pidlist_stop() will be called
no matter if cgroup_pidlist_start() returns errno or not.

Fixes: 4e6c04c0b28b0bf5da3c3f65ffec18b2eb4d7190
Cc: <stable@vger.kernel.org> # 3.14+
Signed-off-by: Zefan Li <lizefan@huawei.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Cong Wang <xiyou.wangcong@gmail.com>
kernel/cgroup.c