Searched refs:io_taskqueue (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/sys/cam/ctl/
H A Dctl_backend_ramdisk.c120 struct taskqueue *io_taskqueue; member in struct:ctl_be_ramdisk_lun
443 taskqueue_enqueue(be_lun->io_taskqueue,
1116 be_lun->io_taskqueue = taskqueue_create("ctlramtq", M_WAITOK,
1117 taskqueue_thread_enqueue, /*context*/&be_lun->io_taskqueue);
1118 if (be_lun->io_taskqueue == NULL) {
1124 retval = taskqueue_start_threads(&be_lun->io_taskqueue,
1153 if (be_lun->io_taskqueue != NULL)
1154 taskqueue_free(be_lun->io_taskqueue);
1245 taskqueue_drain_all(be_lun->io_taskqueue);
1246 taskqueue_free(be_lun->io_taskqueue);
[all...]
H A Dctl_backend_block.c169 struct taskqueue *io_taskqueue; member in struct:ctl_be_block_lun
463 taskqueue_enqueue(be_lun->io_taskqueue, &be_lun->io_task);
1531 taskqueue_enqueue(be_lun->io_taskqueue, &be_lun->io_task);
1761 taskqueue_enqueue(be_lun->io_taskqueue, &be_lun->io_task);
2349 be_lun->io_taskqueue = taskqueue_create("ctlblocktq", M_WAITOK,
2350 taskqueue_thread_enqueue, /*context*/&be_lun->io_taskqueue);
2352 if (be_lun->io_taskqueue == NULL) {
2372 retval = taskqueue_start_threads(&be_lun->io_taskqueue,
2410 if (be_lun->io_taskqueue != NULL)
2411 taskqueue_free(be_lun->io_taskqueue);
[all...]
/freebsd-11-stable/sys/dev/xen/blkback/
H A Dblkback.c550 struct taskqueue *io_taskqueue; member in struct:xbb_softc
554 * on io_taskqueue.
1180 taskqueue_enqueue(xbb->io_taskqueue, &xbb->io_task);
1459 taskqueue_enqueue(xbb->io_taskqueue, &xbb->io_task);
2044 taskqueue_enqueue(xbb->io_taskqueue, &xbb->io_task);
2807 taskqueue_drain(xbb->io_taskqueue, &xbb->io_task);
3693 xbb->io_taskqueue = taskqueue_create_fast(device_get_nameunit(dev),
3696 /*contxt*/&xbb->io_taskqueue);
3697 if (xbb->io_taskqueue == NULL) {
3702 taskqueue_start_threads(&xbb->io_taskqueue,
[all...]

Completed in 121 milliseconds