Merge branch 'for-3.17-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup
Pull cgroup fix from Tejun Heo: "One late fix for cgroup. I was waiting for another set of fixes for a long-standing obscure cpuset bug but am not sure whether they'll be ready before v3.17 release. This one is a simple fix for a mutex unlock balance bug in an allocation failure path in pidlist_array_load(). The bug was introduced in v3.14 and the fix is tagged for -stable" * 'for-3.17-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup: cgroup: fix unbalanced locking
This commit is contained in:
commit
324c7b62d0
1 changed files with 0 additions and 1 deletions
|
@ -3985,7 +3985,6 @@ static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
|
||||||
|
|
||||||
l = cgroup_pidlist_find_create(cgrp, type);
|
l = cgroup_pidlist_find_create(cgrp, type);
|
||||||
if (!l) {
|
if (!l) {
|
||||||
mutex_unlock(&cgrp->pidlist_mutex);
|
|
||||||
pidlist_free(array);
|
pidlist_free(array);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue