Home
last modified time | relevance | path

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

/Linux-v4.19/tools/perf/bench/
Dsched-pipe.c57 static void *worker_thread(void *__tdata) in worker_thread() function
124 ret = pthread_create(&td->pthread, NULL, worker_thread, td); in bench_sched_pipe()
140 worker_thread(threads + 0); in bench_sched_pipe()
143 worker_thread(threads + 1); in bench_sched_pipe()
Dnuma.c1085 static void *worker_thread(void *__tdata) in worker_thread() function
1321 ret = pthread_create(pthreads + t, NULL, worker_thread, td); in worker_process()
/Linux-v4.19/tools/testing/radix-tree/
Dmultiorder.c675 pthread_t worker_thread[num_threads]; in multiorder_iteration_race() local
679 pthread_create(&worker_thread[0], NULL, &creator_func, &tree); in multiorder_iteration_race()
681 pthread_create(&worker_thread[i], NULL, &iterator_func, &tree); in multiorder_iteration_race()
684 pthread_join(worker_thread[i], NULL); in multiorder_iteration_race()
/Linux-v4.19/drivers/scsi/lpfc/
Dlpfc_init.c6429 phba->worker_thread = kthread_run(lpfc_do_work, phba, in lpfc_setup_driver_resource_phase2()
6431 if (IS_ERR(phba->worker_thread)) { in lpfc_setup_driver_resource_phase2()
6432 error = PTR_ERR(phba->worker_thread); in lpfc_setup_driver_resource_phase2()
6463 if (phba->worker_thread) in lpfc_unset_driver_resource_phase2()
6464 kthread_stop(phba->worker_thread); in lpfc_unset_driver_resource_phase2()
10493 kthread_stop(phba->worker_thread); in lpfc_sli4_hba_unset()
10960 kthread_stop(phba->worker_thread); in lpfc_pci_remove_one_s3()
11040 kthread_stop(phba->worker_thread); in lpfc_pci_suspend_one_s3()
11096 phba->worker_thread = kthread_run(lpfc_do_work, phba, in lpfc_pci_resume_one_s3()
11098 if (IS_ERR(phba->worker_thread)) { in lpfc_pci_resume_one_s3()
[all …]
Dlpfc.h856 struct task_struct *worker_thread; member
Dlpfc_hbadisc.c764 phba->worker_thread = NULL; in lpfc_do_work()
/Linux-v4.19/kernel/
Dworkqueue.c353 static int worker_thread(void *__worker);
1813 worker->task = kthread_create_on_node(worker_thread, worker, pool->node, in create_worker()
2238 static int worker_thread(void *__worker) in worker_thread() function