Searched refs:worker_thread (Results 1 – 2 of 2) sorted by relevance
8587 phba->worker_thread = kthread_run(lpfc_do_work, phba, in lpfc_setup_driver_resource_phase2()8589 if (IS_ERR(phba->worker_thread)) { in lpfc_setup_driver_resource_phase2()8590 error = PTR_ERR(phba->worker_thread); in lpfc_setup_driver_resource_phase2()8614 if (phba->worker_thread) in lpfc_unset_driver_resource_phase2()8615 kthread_stop(phba->worker_thread); in lpfc_unset_driver_resource_phase2()13497 kthread_stop(phba->worker_thread); in lpfc_sli4_hba_unset()14091 kthread_stop(phba->worker_thread); in lpfc_pci_remove_one_s3()14172 kthread_stop(phba->worker_thread); in lpfc_pci_suspend_one_s3()14211 phba->worker_thread = kthread_run(lpfc_do_work, phba, in lpfc_pci_resume_one_s3()14213 if (IS_ERR(phba->worker_thread)) { in lpfc_pci_resume_one_s3()[all …]
551 static int worker_thread(void *__worker);2910 worker->task = kthread_create_on_node(worker_thread, worker, in create_worker()3496 static int worker_thread(void *__worker) in worker_thread() function