Home
last modified time | relevance | path

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

/linux-2.6.39/drivers/pci/hotplug/
Dcpci_hotplug_core.c62 static struct task_struct *cpci_thread; variable
344 wake_up_process(cpci_thread); in cpci_hp_intr()
564 cpci_thread = kthread_run(event_thread, NULL, "cpci_hp_eventd"); in cpci_start_thread()
566 cpci_thread = kthread_run(poll_thread, NULL, "cpci_hp_polld"); in cpci_start_thread()
567 if (IS_ERR(cpci_thread)) { in cpci_start_thread()
569 return PTR_ERR(cpci_thread); in cpci_start_thread()
578 kthread_stop(cpci_thread); in cpci_stop_thread()