Home
last modified time | relevance | path

Searched refs:write_thread (Results 1 – 1 of 1) sorted by relevance

/Linux-v5.15/drivers/md/
Ddm-crypt.c155 struct task_struct *write_thread; member
1972 wake_up_process(cc->write_thread); in kcryptd_crypt_write_io_submit()
2697 if (cc->write_thread) in crypt_dtr()
2698 kthread_stop(cc->write_thread); in crypt_dtr()
3353 cc->write_thread = kthread_create(dmcrypt_write, cc, "dmcrypt_write/%s", devname); in crypt_ctr()
3354 if (IS_ERR(cc->write_thread)) { in crypt_ctr()
3355 ret = PTR_ERR(cc->write_thread); in crypt_ctr()
3356 cc->write_thread = NULL; in crypt_ctr()
3360 wake_up_process(cc->write_thread); in crypt_ctr()