Searched refs:poll_thread (Results 1 – 9 of 9) sorted by relevance
/linux/drivers/siox/ |
A D | siox-core.c | 339 wake_up_process(smaster->poll_thread); in __siox_start() 726 smaster->poll_thread = kthread_run(siox_poll_thread, smaster, in siox_master_register() 728 if (IS_ERR(smaster->poll_thread)) { in siox_master_register() 730 return PTR_ERR(smaster->poll_thread); in siox_master_register() 735 kthread_stop(smaster->poll_thread); in siox_master_register()
|
A D | siox.h | 34 struct task_struct *poll_thread; member
|
/linux/tools/testing/selftests/bpf/prog_tests/ |
A D | ringbuf.c | 77 static void *poll_thread(void *input) in poll_thread() function 211 err = pthread_create(&thread, NULL, poll_thread, (void *)(long)10000); in test_ringbuf()
|
/linux/drivers/pci/hotplug/ |
A D | pciehp_hpc.c | 62 ctrl->poll_thread = kthread_run(&pciehp_poll, ctrl, in pciehp_request_irq() 65 return PTR_ERR_OR_ZERO(ctrl->poll_thread); in pciehp_request_irq() 80 kthread_stop(ctrl->poll_thread); in pciehp_free_irq()
|
A D | pciehp.h | 101 struct task_struct *poll_thread; member
|
A D | cpci_hotplug_core.c | 467 poll_thread(void *data) in poll_thread() function 499 cpci_thread = kthread_run(poll_thread, NULL, "cpci_hp_polld"); in cpci_start_thread()
|
/linux/drivers/s390/crypto/ |
A D | ap_bus.c | 53 module_param_named(poll_thread, ap_thread_flag, int, 0440); 54 MODULE_PARM_DESC(poll_thread, "Turn on/off poll thread, default is 0 (off)."); 1229 static BUS_ATTR_RW(poll_thread);
|
/linux/drivers/net/ethernet/freescale/dpaa2/ |
A D | dpaa2-eth.h | 545 struct task_struct *poll_thread; member
|
A D | dpaa2-eth.c | 4430 priv->poll_thread = kthread_run(dpaa2_eth_poll_link_state, priv, in dpaa2_eth_probe() 4432 if (IS_ERR(priv->poll_thread)) { in dpaa2_eth_probe() 4479 kthread_stop(priv->poll_thread); in dpaa2_eth_probe() 4537 kthread_stop(priv->poll_thread); in dpaa2_eth_remove()
|
Completed in 28 milliseconds