Searched refs:worker_thread (Results 1 – 2 of 2) sorted by relevance
8588 phba->worker_thread = kthread_run(lpfc_do_work, phba, in lpfc_setup_driver_resource_phase2()8590 if (IS_ERR(phba->worker_thread)) { in lpfc_setup_driver_resource_phase2()8591 error = PTR_ERR(phba->worker_thread); in lpfc_setup_driver_resource_phase2()8615 if (phba->worker_thread) in lpfc_unset_driver_resource_phase2()8616 kthread_stop(phba->worker_thread); in lpfc_unset_driver_resource_phase2()13498 kthread_stop(phba->worker_thread); in lpfc_sli4_hba_unset()14092 kthread_stop(phba->worker_thread); in lpfc_pci_remove_one_s3()14173 kthread_stop(phba->worker_thread); in lpfc_pci_suspend_one_s3()14212 phba->worker_thread = kthread_run(lpfc_do_work, phba, in lpfc_pci_resume_one_s3()14214 if (IS_ERR(phba->worker_thread)) { in lpfc_pci_resume_one_s3()[all …]
549 static int worker_thread(void *__worker);2853 worker->task = kthread_create_on_node(worker_thread, worker, in create_worker()3423 static int worker_thread(void *__worker) in worker_thread() function