2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-19 18:53:52 +08:00

workqueue: Fix missing kfree(rescuer) in destroy_workqueue()

Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Qian Cai <cai@lca.pw>
Fixes: def98c84b6 ("workqueue: Fix spurious sanity check failures in destroy_workqueue()")
This commit is contained in:
Tejun Heo 2019-09-20 13:39:57 -07:00
parent def98c84b6
commit 8efe1223d7

View File

@ -4345,6 +4345,7 @@ void destroy_workqueue(struct workqueue_struct *wq)
/* rescuer will empty maydays list before exiting */ /* rescuer will empty maydays list before exiting */
kthread_stop(rescuer->task); kthread_stop(rescuer->task);
kfree(rescuer);
} }
/* sanity checks */ /* sanity checks */