|
@@ -1645,20 +1645,14 @@ static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
|
|
|
}
|
|
|
|
|
|
ret = -ENOMEM;
|
|
|
- cc->io_queue = alloc_workqueue("kcryptd_io",
|
|
|
- WQ_NON_REENTRANT|
|
|
|
- WQ_MEM_RECLAIM,
|
|
|
- 1);
|
|
|
+ cc->io_queue = alloc_workqueue("kcryptd_io", WQ_MEM_RECLAIM, 1);
|
|
|
if (!cc->io_queue) {
|
|
|
ti->error = "Couldn't create kcryptd io queue";
|
|
|
goto bad;
|
|
|
}
|
|
|
|
|
|
cc->crypt_queue = alloc_workqueue("kcryptd",
|
|
|
- WQ_NON_REENTRANT|
|
|
|
- WQ_CPU_INTENSIVE|
|
|
|
- WQ_MEM_RECLAIM,
|
|
|
- 1);
|
|
|
+ WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM, 1);
|
|
|
if (!cc->crypt_queue) {
|
|
|
ti->error = "Couldn't create kcryptd queue";
|
|
|
goto bad;
|