Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Dpersist_data.py114 def write_thread(): function
121 threads.append(threading.Thread(target=write_thread))
/openbmc/linux/drivers/md/
H A Ddm-crypt.c163 struct task_struct *write_thread; member
2028 wake_up_process(cc->write_thread); in kcryptd_crypt_write_io_submit()
2768 if (cc->write_thread) in crypt_dtr()
2769 kthread_stop(cc->write_thread); in crypt_dtr()
3426 cc->write_thread = kthread_run(dmcrypt_write, cc, "dmcrypt_write/%s", devname); in crypt_ctr()
3427 if (IS_ERR(cc->write_thread)) { in crypt_ctr()
3428 ret = PTR_ERR(cc->write_thread); in crypt_ctr()
3429 cc->write_thread = NULL; in crypt_ctr()