Home
last modified time | relevance | path

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

/linux-4.1.27/tools/perf/bench/
Dsched-pipe.c55 static void *worker_thread(void *__tdata) in worker_thread() function
122 ret = pthread_create(&td->pthread, NULL, worker_thread, td); in bench_sched_pipe()
138 worker_thread(threads + 0); in bench_sched_pipe()
141 worker_thread(threads + 1); in bench_sched_pipe()
Dnuma.c1026 static void *worker_thread(void *__tdata) in worker_thread() function
1253 ret = pthread_create(pthreads + t, NULL, worker_thread, td); in worker_process()
/linux-4.1.27/drivers/scsi/lpfc/
Dlpfc_init.c5675 phba->worker_thread = kthread_run(lpfc_do_work, phba, in lpfc_setup_driver_resource_phase2()
5677 if (IS_ERR(phba->worker_thread)) { in lpfc_setup_driver_resource_phase2()
5678 error = PTR_ERR(phba->worker_thread); in lpfc_setup_driver_resource_phase2()
5697 kthread_stop(phba->worker_thread); in lpfc_unset_driver_resource_phase2()
9328 kthread_stop(phba->worker_thread); in lpfc_sli4_hba_unset()
9712 kthread_stop(phba->worker_thread); in lpfc_pci_remove_one_s3()
9792 kthread_stop(phba->worker_thread); in lpfc_pci_suspend_one_s3()
9848 phba->worker_thread = kthread_run(lpfc_do_work, phba, in lpfc_pci_resume_one_s3()
9850 if (IS_ERR(phba->worker_thread)) { in lpfc_pci_resume_one_s3()
9851 error = PTR_ERR(phba->worker_thread); in lpfc_pci_resume_one_s3()
[all …]
Dlpfc.h764 struct task_struct *worker_thread; member
Dlpfc_hbadisc.c783 phba->worker_thread = NULL; in lpfc_do_work()
/linux-4.1.27/kernel/
Dworkqueue.c337 static int worker_thread(void *__worker);
1755 worker->task = kthread_create_on_node(worker_thread, worker, pool->node, in create_worker()
2152 static int worker_thread(void *__worker) in worker_thread() function