summaryrefslogtreecommitdiffstats
path: root/mm/percpu.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2014-09-09 08:02:45 +0900
committerTejun Heo <tj@kernel.org>2014-09-09 08:02:45 +0900
commit23cb8981ed929b4dd48141401cd0fd31e0fa4ed0 (patch)
treec9c8e52c6034cdd809dba59e5ff3d491694506aa /mm/percpu.c
parenta34375ef9e65340a138fc0be287de5c940d260fc (diff)
downloadlinux-0-day-23cb8981ed929b4dd48141401cd0fd31e0fa4ed0.tar.gz
linux-0-day-23cb8981ed929b4dd48141401cd0fd31e0fa4ed0.tar.xz
percpu: fix locking regression in the failure path of pcpu_alloc()
While updating locking, b38d08f3181c ("percpu: restructure locking") broke pcpu_create_chunk() creation path in pcpu_alloc(). It returns without releasing pcpu_alloc_mutex. Fix it. Signed-off-by: Tejun Heo <tj@kernel.org> Reported-by: Julia Lawall <julia.lawall@lip6.fr>
Diffstat (limited to 'mm/percpu.c')
-rw-r--r--mm/percpu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/percpu.c b/mm/percpu.c
index 867efd38d8791..af3dd2704efd8 100644
--- a/mm/percpu.c
+++ b/mm/percpu.c
@@ -974,6 +974,7 @@ restart:
if (list_empty(&pcpu_slot[pcpu_nr_slots - 1])) {
chunk = pcpu_create_chunk();
if (!chunk) {
+ mutex_unlock(&pcpu_alloc_mutex);
err = "failed to allocate new chunk";
goto fail;
}