Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/s390/crypto/
Dap_bus.c96 static struct task_struct *ap_poll_kthread; variable
359 if (ap_poll_kthread) { in ap_wait()
510 if (ap_using_interrupts() || ap_poll_kthread) in ap_poll_thread_start()
513 ap_poll_kthread = kthread_run(ap_poll_thread, NULL, "appoll"); in ap_poll_thread_start()
514 rc = PTR_ERR_OR_ZERO(ap_poll_kthread); in ap_poll_thread_start()
516 ap_poll_kthread = NULL; in ap_poll_thread_start()
523 if (!ap_poll_kthread) in ap_poll_thread_stop()
526 kthread_stop(ap_poll_kthread); in ap_poll_thread_stop()
527 ap_poll_kthread = NULL; in ap_poll_thread_stop()
1123 return snprintf(buf, PAGE_SIZE, "%d\n", ap_poll_kthread ? 1 : 0); in poll_thread_show()