Symbol: worker_thread
drivers/scsi/lpfc/lpfc.h
1210
struct task_struct *worker_thread;
drivers/scsi/lpfc/lpfc_hbadisc.c
1120
phba->worker_thread = NULL;
drivers/scsi/lpfc/lpfc_hbadisc.c
278
if (phba->worker_thread) {
drivers/scsi/lpfc/lpfc_init.c
13497
kthread_stop(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
14091
kthread_stop(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
14172
kthread_stop(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
14211
phba->worker_thread = kthread_run(lpfc_do_work, phba,
drivers/scsi/lpfc/lpfc_init.c
14213
if (IS_ERR(phba->worker_thread)) {
drivers/scsi/lpfc/lpfc_init.c
14214
error = PTR_ERR(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
15004
kthread_stop(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
15044
phba->worker_thread = kthread_run(lpfc_do_work, phba,
drivers/scsi/lpfc/lpfc_init.c
15046
if (IS_ERR(phba->worker_thread)) {
drivers/scsi/lpfc/lpfc_init.c
15047
error = PTR_ERR(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
8587
phba->worker_thread = kthread_run(lpfc_do_work, phba,
drivers/scsi/lpfc/lpfc_init.c
8589
if (IS_ERR(phba->worker_thread)) {
drivers/scsi/lpfc/lpfc_init.c
8590
error = PTR_ERR(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
8614
if (phba->worker_thread)
drivers/scsi/lpfc/lpfc_init.c
8615
kthread_stop(phba->worker_thread);
kernel/workqueue.c
2861
worker->task = kthread_create_on_node(worker_thread, worker,
kernel/workqueue.c
549
static int worker_thread(void *__worker);
tools/perf/bench/numa.c
1441
ret = pthread_create(pthreads + t, NULL, worker_thread, td);
tools/perf/bench/sched-pipe.c
362
ret = pthread_create(&td->pthread, NULL, worker_thread, td);
tools/perf/bench/sched-pipe.c
377
worker_thread(threads + 0);
tools/perf/bench/sched-pipe.c
380
worker_thread(threads + 1);
tools/testing/radix-tree/multiorder.c
201
pthread_t worker_thread[num_threads];
tools/testing/radix-tree/multiorder.c
205
pthread_create(&worker_thread[0], NULL, &creator_func, xa);
tools/testing/radix-tree/multiorder.c
207
pthread_create(&worker_thread[i], NULL, &iterator_func, xa);
tools/testing/radix-tree/multiorder.c
210
pthread_join(worker_thread[i], NULL);
tools/testing/radix-tree/multiorder.c
260
pthread_t worker_thread[num_threads];
tools/testing/radix-tree/multiorder.c
264
pthread_create(&worker_thread[0], NULL, &load_creator, xa);
tools/testing/radix-tree/multiorder.c
266
pthread_create(&worker_thread[i], NULL, &load_worker, xa);
tools/testing/radix-tree/multiorder.c
269
pthread_join(worker_thread[i], NULL);
tools/testing/selftests/acct/taskstats_fill_stats_tgid.c
314
if (pthread_create(&thread, NULL, worker_thread, &ctx) != 0)