Skip to content
Snippets Groups Projects
Commit 23cb8981 authored by Tejun Heo's avatar Tejun Heo
Browse files

percpu: fix locking regression in the failure path of pcpu_alloc()


While updating locking, b38d08f3 ("percpu: restructure locking")
broke pcpu_create_chunk() creation path in pcpu_alloc().  It returns
without releasing pcpu_alloc_mutex.  Fix it.

Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Reported-by: default avatarJulia Lawall <julia.lawall@lip6.fr>
parent a34375ef
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment