Home
last modified time | relevance | path

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

/linux/include/linux/
H A Dconsole.h415 void (*write_thread)(struct console *con, struct nbcon_write_context *wctxt); member
/linux/drivers/md/
H A Ddm-crypt.c167 struct task_struct *write_thread;
2051 wake_up_process(cc->write_thread); in kcryptd_crypt_write_io_submit()
2782 if (cc->write_thread)
2783 kthread_stop(cc->write_thread); in crypt_dtr()
3471 cc->write_thread = kthread_run(dmcrypt_write, cc, "dmcrypt_write/%s", devname); in crypt_ctr()
3472 if (IS_ERR(cc->write_thread)) { in crypt_ctr()
3473 ret = PTR_ERR(cc->write_thread); in crypt_ctr()
3474 cc->write_thread = NULL; in crypt_ctr()
3479 set_user_nice(cc->write_thread, MIN_NICE); in crypt_ctr()
166 struct task_struct *write_thread; global() member
/linux/kernel/printk/
H A Dnbcon.c1028 con->write_thread(con, wctxt); in nbcon_emit_next_record()
1675 if (WARN_ON(!con->write_thread)) in nbcon_alloc()
/linux/drivers/gpu/drm/clients/
H A Ddrm_log.c384 con->write_thread = drm_log_write_thread; in drm_log_register_console()
/linux/drivers/tty/serial/
H A Dimx.c2337 .write_thread = imx_uart_console_write_thread,