Merge tag 'for-5.11/dm-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm

Pull device mapper fix from Mike Snitzer:
"Revert WQ_SYSFS change that broke reencryption (and all other
functionality that requires reloading a dm-crypt DM table)"

* tag 'for-5.11/dm-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm:
Revert "dm crypt: export sysfs of kcryptd workqueue"

+3 -4
+3 -4
drivers/md/dm-crypt.c
··· 3166 3166 } 3167 3167 3168 3168 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags)) 3169 - cc->crypt_queue = alloc_workqueue("kcryptd-%s", WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM, 3169 + cc->crypt_queue = alloc_workqueue("kcryptd/%s", WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM, 3170 3170 1, devname); 3171 3171 else 3172 - cc->crypt_queue = alloc_workqueue("kcryptd-%s", 3173 - WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM | 3174 - WQ_UNBOUND | WQ_SYSFS, 3172 + cc->crypt_queue = alloc_workqueue("kcryptd/%s", 3173 + WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM | WQ_UNBOUND, 3175 3174 num_online_cpus(), devname); 3176 3175 if (!cc->crypt_queue) { 3177 3176 ti->error = "Couldn't create kcryptd queue";