Home
last modified time | relevance | path

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

/Linux-v5.10/drivers/s390/crypto/
Dap_bus.c97 static struct task_struct *ap_poll_kthread; variable
374 if (ap_poll_kthread) { in ap_wait()
517 if (ap_using_interrupts() || ap_poll_kthread) in ap_poll_thread_start()
520 ap_poll_kthread = kthread_run(ap_poll_thread, NULL, "appoll"); in ap_poll_thread_start()
521 rc = PTR_ERR_OR_ZERO(ap_poll_kthread); in ap_poll_thread_start()
523 ap_poll_kthread = NULL; in ap_poll_thread_start()
530 if (!ap_poll_kthread) in ap_poll_thread_stop()
533 kthread_stop(ap_poll_kthread); in ap_poll_thread_stop()
534 ap_poll_kthread = NULL; in ap_poll_thread_stop()
1043 return scnprintf(buf, PAGE_SIZE, "%d\n", ap_poll_kthread ? 1 : 0); in poll_thread_show()