Searched refs:poll_thread (Results 1 - 9 of 9) sorted by relevance

/linux-master/drivers/siox/
H A Dsiox.h34 struct task_struct *poll_thread; member in struct:siox_master
H A Dsiox-core.c339 wake_up_process(smaster->poll_thread);
753 smaster->poll_thread = kthread_run(siox_poll_thread, smaster,
755 if (IS_ERR(smaster->poll_thread)) {
757 return PTR_ERR(smaster->poll_thread);
762 kthread_stop(smaster->poll_thread);
/linux-master/drivers/pci/hotplug/
H A Dpciehp.h67 * @poll_thread: thread to poll for slot events if no IRQ is available,
103 struct task_struct *poll_thread; member in struct:controller
H A Dcpci_hotplug_core.c467 poll_thread(void *data) function
499 cpci_thread = kthread_run(poll_thread, NULL, "cpci_hp_polld");
H A Dpciehp_hpc.c63 ctrl->poll_thread = kthread_run(&pciehp_poll, ctrl,
66 return PTR_ERR_OR_ZERO(ctrl->poll_thread);
81 kthread_stop(ctrl->poll_thread);
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dringbuf.c79 static void *poll_thread(void *input) function
235 err = pthread_create(&thread, NULL, poll_thread, (void *)(long)10000);
/linux-master/drivers/s390/crypto/
H A Dap_bus.c56 module_param_named(poll_thread, ap_thread_flag, int, 0440);
57 MODULE_PARM_DESC(poll_thread, "Turn on/off poll thread, default is 0 (off).");
1328 static BUS_ATTR_RW(poll_thread);
/linux-master/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-eth.h600 struct task_struct *poll_thread; member in struct:dpaa2_eth_priv
H A Ddpaa2-eth.c4951 priv->poll_thread = kthread_run(dpaa2_eth_poll_link_state, priv,
4953 if (IS_ERR(priv->poll_thread)) {
4996 kthread_stop(priv->poll_thread);
5055 kthread_stop(priv->poll_thread);

Completed in 270 milliseconds