Home
last modified time | relevance | path

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

/openbmc/linux/drivers/siox/
H A Dsiox-core.c339 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()
H A Dsiox.h34 struct task_struct *poll_thread; member
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dringbuf.c79 static void *poll_thread(void *input) in poll_thread() function
213 err = pthread_create(&thread, NULL, poll_thread, (void *)(long)10000); in ringbuf_subtest()
/openbmc/linux/drivers/pci/hotplug/
H A Dpciehp.h103 struct task_struct *poll_thread; member
H A Dcpci_hotplug_core.c467 poll_thread(void *data) in poll_thread() function
499 cpci_thread = kthread_run(poll_thread, NULL, "cpci_hp_polld"); in cpci_start_thread()
H A Dpciehp_hpc.c62 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()
/openbmc/linux/drivers/s390/crypto/
H A Dap_bus.c55 module_param_named(poll_thread, ap_thread_flag, int, 0440);
56 MODULE_PARM_DESC(poll_thread, "Turn on/off poll thread, default is 0 (off).");
1303 static BUS_ATTR_RW(poll_thread);
/openbmc/linux/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-eth.h600 struct task_struct *poll_thread; member
H A Ddpaa2-eth.c4955 priv->poll_thread = kthread_run(dpaa2_eth_poll_link_state, priv, in dpaa2_eth_probe()
4957 if (IS_ERR(priv->poll_thread)) { in dpaa2_eth_probe()
5000 kthread_stop(priv->poll_thread); in dpaa2_eth_probe()
5059 kthread_stop(priv->poll_thread); in dpaa2_eth_remove()
/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/rpidistro-ffmpeg/files/
H A D0001-ffmpeg-5.1.4-rpi_24.patch11819 +static void *poll_thread(void *v)
11949 + if (pthread_create(&pq->worker, NULL, poll_thread, pq))