Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/md/
Ddm-crypt.c136 struct task_struct *write_thread; member
1516 if (cc->write_thread) in crypt_dtr()
1517 kthread_stop(cc->write_thread); in crypt_dtr()
1864 cc->write_thread = kthread_create(dmcrypt_write, cc, "dmcrypt_write"); in crypt_ctr()
1865 if (IS_ERR(cc->write_thread)) { in crypt_ctr()
1866 ret = PTR_ERR(cc->write_thread); in crypt_ctr()
1867 cc->write_thread = NULL; in crypt_ctr()
1871 wake_up_process(cc->write_thread); in crypt_ctr()