Searched defs:worker (Results 1 - 11 of 11) sorted by relevance

/drivers/macintosh/ams/
H A Dams.h32 /* Interrupt worker */
33 struct work_struct worker; member in struct:ams
/drivers/hid/
H A Dhid-wiimote-ext.c21 struct work_struct worker; member in struct:wiimote_ext
194 worker);
207 queue_work(system_nrt_wq, &ext->worker);
216 * separate worker thread. The state.lock spinlock must be held by the caller.
624 INIT_WORK(&ext->worker, wiiext_worker);
736 * core. The worker thread does not access this pointer so it is not
738 * We kill the worker after this so it does not get respawned during
750 cancel_work_sync(&ext->worker);
H A Dhid-wiimote.h84 struct work_struct worker; member in struct:wiimote_data
/drivers/vhost/
H A Dvhost.h124 * All readers access it from worker, which makes it possible to
160 struct task_struct *worker; member in struct:vhost_dev
H A Dvhost.c149 wake_up_process(dev->worker);
305 dev->worker = NULL;
358 struct task_struct *worker; local
369 worker = kthread_create(vhost_worker, dev, "vhost-%d", current->pid);
370 if (IS_ERR(worker)) {
371 err = PTR_ERR(worker);
375 dev->worker = worker;
376 wake_up_process(worker); /* avoid contributing to loadavg */
388 kthread_stop(worker);
[all...]
/drivers/media/video/hdpvr/
H A Dhdpvr.h101 struct work_struct worker; member in struct:hdpvr_device
/drivers/net/wireless/iwmc3200wifi/
H A Diwm.h198 struct work_struct worker; member in struct:iwm_tx_queue
/drivers/md/
H A Ddm-thin.c523 struct work_struct worker; member in struct:pool
731 queue_work(pool->wq, &pool->worker);
1486 struct pool *pool = container_of(ws, struct pool, worker);
1744 INIT_WORK(&pool->worker, do_worker);
/drivers/s390/block/
H A Ddasd_eckd.c102 /* definitions for the path verification worker */
104 struct work_struct worker; member in struct:path_verification_work_data
1232 data = container_of(work, struct path_verification_work_data, worker);
1392 INIT_WORK(&data->worker, do_path_verification_work);
1396 schedule_work(&data->worker);
1554 * worker to do a validate server in case of a lost pathgroup
2284 /* schedule worker to reload device */
H A Ddasd_eckd.h404 struct work_struct worker; member in struct:summary_unit_check_work_data
/drivers/block/drbd/
H A Ddrbd_int.h844 * but worker thread is still handling the cleanup.
887 /* THINK maybe we actually want to use the default "event/%s" worker threads
892 struct semaphore s; /* producers up it, worker down()s it */
1060 struct drbd_thread worker; member in struct:drbd_conf
1105 struct crypto_hash *integrity_w_tfm; /* to be used by the worker thread */
1557 /* worker callbacks */
2050 * worker, even before it actually was queued or send.

Completed in 303 milliseconds