Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/pci/hotplug/
Dcpci_hotplug_core.c62 static struct task_struct *cpci_thread; variable
354 wake_up_process(cpci_thread); in cpci_hp_intr()
574 cpci_thread = kthread_run(event_thread, NULL, "cpci_hp_eventd"); in cpci_start_thread()
576 cpci_thread = kthread_run(poll_thread, NULL, "cpci_hp_polld"); in cpci_start_thread()
577 if (IS_ERR(cpci_thread)) { in cpci_start_thread()
579 return PTR_ERR(cpci_thread); in cpci_start_thread()
588 kthread_stop(cpci_thread); in cpci_stop_thread()