Home
last modified time | relevance | path

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

/linux/drivers/s390/crypto/
H A Dap_bus.c123 static struct task_struct *ap_poll_kthread; variable
377 if (ap_poll_kthread) { in ap_wait()
525 if (ap_irq_flag || ap_poll_kthread) in ap_poll_thread_start()
528 ap_poll_kthread = kthread_run(ap_poll_thread, NULL, "appoll"); in ap_poll_thread_start()
529 rc = PTR_ERR_OR_ZERO(ap_poll_kthread); in ap_poll_thread_start()
531 ap_poll_kthread = NULL; in ap_poll_thread_start()
538 if (!ap_poll_kthread) in ap_poll_thread_stop()
541 kthread_stop(ap_poll_kthread); in ap_poll_thread_stop()
542 ap_poll_kthread = NULL; in ap_poll_thread_stop()
1298 return sysfs_emit(buf, "%d\n", ap_poll_kthread ? 1 : 0); in poll_thread_show()