Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/md/
Ddm-crypt.c137 struct task_struct *write_thread; member
1533 if (cc->write_thread) { in crypt_dtr()
1538 kthread_stop(cc->write_thread); in crypt_dtr()
1886 cc->write_thread = kthread_create(dmcrypt_write, cc, "dmcrypt_write"); in crypt_ctr()
1887 if (IS_ERR(cc->write_thread)) { in crypt_ctr()
1888 ret = PTR_ERR(cc->write_thread); in crypt_ctr()
1889 cc->write_thread = NULL; in crypt_ctr()
1893 wake_up_process(cc->write_thread); in crypt_ctr()