Symbol: worker_thread
drivers/scsi/lpfc/lpfc.h
1213
struct task_struct *worker_thread;
drivers/scsi/lpfc/lpfc_hbadisc.c
1121
phba->worker_thread = NULL;
drivers/scsi/lpfc/lpfc_hbadisc.c
278
if (phba->worker_thread) {
drivers/scsi/lpfc/lpfc_init.c
13476
kthread_stop(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
14115
kthread_stop(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
14196
kthread_stop(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
14235
phba->worker_thread = kthread_run(lpfc_do_work, phba,
drivers/scsi/lpfc/lpfc_init.c
14237
if (IS_ERR(phba->worker_thread)) {
drivers/scsi/lpfc/lpfc_init.c
14238
error = PTR_ERR(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
15020
kthread_stop(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
15060
phba->worker_thread = kthread_run(lpfc_do_work, phba,
drivers/scsi/lpfc/lpfc_init.c
15062
if (IS_ERR(phba->worker_thread)) {
drivers/scsi/lpfc/lpfc_init.c
15063
error = PTR_ERR(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
8583
phba->worker_thread = kthread_run(lpfc_do_work, phba,
drivers/scsi/lpfc/lpfc_init.c
8585
if (IS_ERR(phba->worker_thread)) {
drivers/scsi/lpfc/lpfc_init.c
8586
error = PTR_ERR(phba->worker_thread);
drivers/scsi/lpfc/lpfc_init.c
8610
if (phba->worker_thread)
drivers/scsi/lpfc/lpfc_init.c
8611
kthread_stop(phba->worker_thread);
kernel/workqueue.c
2815
worker->task = kthread_create_on_node(worker_thread, worker,
kernel/workqueue.c
534
static int worker_thread(void *__worker);
tools/perf/bench/numa.c
1446
ret = pthread_create(pthreads + t, NULL, worker_thread, td);
tools/perf/bench/sched-pipe.c
262
ret = pthread_create(&td->pthread, NULL, worker_thread, td);
tools/perf/bench/sched-pipe.c
277
worker_thread(threads + 0);
tools/perf/bench/sched-pipe.c
280
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);