Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/tools/perf/bench/
H A Dsched-pipe.c54 static void *worker_thread(void *__tdata) in worker_thread() function
121 ret = pthread_create(&td->pthread, NULL, worker_thread, td); in bench_sched_pipe()
137 worker_thread(threads + 0); in bench_sched_pipe()
140 worker_thread(threads + 1); in bench_sched_pipe()
H A Dnuma.c1104 static void *worker_thread(void *__tdata) in worker_thread() function
1343 ret = pthread_create(pthreads + t, NULL, worker_thread, td); in worker_process()
/OK3568_Linux_fs/kernel/tools/testing/radix-tree/
H A Dmultiorder.c201 pthread_t worker_thread[num_threads]; in multiorder_iteration_race() local
204 pthread_create(&worker_thread[0], NULL, &creator_func, xa); in multiorder_iteration_race()
206 pthread_create(&worker_thread[i], NULL, &iterator_func, xa); in multiorder_iteration_race()
209 pthread_join(worker_thread[i], NULL); in multiorder_iteration_race()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/tests/
H A Dtest_task_service.cpp43 void worker_thread(std::shared_ptr<TaskService<MockParam>> arg) { in worker_thread() function
77 std::thread thr(worker_thread, svc); in main()
/OK3568_Linux_fs/yocto/poky/bitbake/bin/
H A Dbitbake-worker116 worker_thread = Thread(target=worker_flush, args=(worker_queue,)) variable
117 worker_thread.start()
547 worker_thread.join()
/OK3568_Linux_fs/kernel/drivers/scsi/lpfc/
H A Dlpfc_init.c7202 phba->worker_thread = kthread_run(lpfc_do_work, phba, in lpfc_setup_driver_resource_phase2()
7204 if (IS_ERR(phba->worker_thread)) { in lpfc_setup_driver_resource_phase2()
7205 error = PTR_ERR(phba->worker_thread); in lpfc_setup_driver_resource_phase2()
7230 if (phba->worker_thread) in lpfc_unset_driver_resource_phase2()
7231 kthread_stop(phba->worker_thread); in lpfc_unset_driver_resource_phase2()
12001 kthread_stop(phba->worker_thread); in lpfc_sli4_hba_unset()
12442 kthread_stop(phba->worker_thread); in lpfc_pci_remove_one_s3()
12524 kthread_stop(phba->worker_thread); in lpfc_pci_suspend_one_s3()
12580 phba->worker_thread = kthread_run(lpfc_do_work, phba, in lpfc_pci_resume_one_s3()
12582 if (IS_ERR(phba->worker_thread)) { in lpfc_pci_resume_one_s3()
[all …]
H A Dlpfc.h944 struct task_struct *worker_thread; member
H A Dlpfc_hbadisc.c782 phba->worker_thread = NULL; in lpfc_do_work()
/OK3568_Linux_fs/kernel/kernel/
H A Dworkqueue.c363 static int worker_thread(void *__worker);
1957 worker->task = kthread_create_on_node(worker_thread, worker, pool->node, in create_worker()
2394 static int worker_thread(void *__worker) in worker_thread() function