From: Yuan Can <yuancan@xxxxxxxxxx> commit e74fa2447bf9ed03d085b6d91f0256cc1b53f1a8 upstream. This commit add missed destroy_work_on_stack() operations for pw->worker in pool_work_wait(). Fixes: e7a3e871d895 ("dm thin: cleanup noflush_work to use a proper completion") Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Yuan Can <yuancan@xxxxxxxxxx> Signed-off-by: Mikulas Patocka <mpatocka@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/md/dm-thin.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/md/dm-thin.c +++ b/drivers/md/dm-thin.c @@ -2468,6 +2468,7 @@ static void pool_work_wait(struct pool_w init_completion(&pw->complete); queue_work(pool->wq, &pw->worker); wait_for_completion(&pw->complete); + destroy_work_on_stack(&pw->worker); } /*----------------------------------------------------------------*/ Patches currently in stable-queue which might be from yuancan@xxxxxxxxxx are queue-5.10/dm-thin-add-missing-destroy_work_on_stack.patch queue-5.10/wifi-wfx-fix-error-handling-in-wfx_core_init.patch queue-5.10/firmware-google-unregister-driver_info-on-failure.patch queue-5.10/cpufreq-loongson2-unregister-platform_driver-on-fail.patch queue-5.10/drm-amdkfd-fix-wrong-usage-of-init_work.patch