Searched refs:bioq (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/sys/dev/nvd/
H A Dnvd.c74 struct bio_queue_head bioq; member in struct:nvd_disk
222 ndisk->cur_depth == 0 && bioq_first(&ndisk->bioq) == NULL) {
236 bioq_insert_tail(&ndisk->bioq, bp);
249 while ((bp = bioq_takefirst(&ndisk->bioq)) != NULL) {
322 bp = bioq_takefirst(&ndisk->bioq);
377 mtx_init(&ndisk->bioqlock, "nvd bioq lock", NULL, MTX_DEF);
378 bioq_init(&ndisk->bioq);
/freebsd-11-stable/sys/dev/cfi/
H A Dcfi_disk.c61 struct bio_queue_head bioq; /* bio queue */ member in struct:cfi_disk_softc
62 struct mtx qlock; /* bioq lock */
126 bioq_init(&sc->bioq);
145 /* XXX drain bioq */
271 bp = bioq_takefirst(&sc->bioq);
328 bioq_insert_tail(&sc->bioq, bp);
/freebsd-11-stable/sys/dev/nand/
H A Dnand_geom.c109 bioq_insert_tail(&chip->bioq, bp);
131 bioq_insert_tail(&chip->bioq, bp);
317 bp = bioq_takefirst(&chip->bioq);
427 bioq_init(&chip->bioq);
453 bp = bioq_takefirst(&chip->bioq);
H A Dnand.h319 struct bio_queue_head bioq; /* bio queue */ member in struct:nand_chip
320 struct mtx qlock; /* bioq lock */
/freebsd-11-stable/sys/dev/virtio/block/
H A Dvirtio_blk.c849 struct bio_queue_head *bioq; local
853 bioq = &sc->vtblk_bioq;
855 if (bioq_first(bioq) == NULL)
862 bp = bioq_takefirst(bioq);
1020 struct bio_queue_head *bioq; local
1024 bioq = &sc->vtblk_bioq;
1039 while (bioq_first(bioq) != NULL) {
1040 bp = bioq_takefirst(bioq);
/freebsd-11-stable/sys/geom/journal/
H A Dg_journal.c1111 struct bio *bioq, *bp, *lbp; local
1113 bioq = lbp = NULL;
1121 GJQ_INSERT_AFTER(bioq, bp, lbp);
1126 sc->sc_copy_in_progress += g_journal_optimize(bioq);
1127 while ((bp = GJQ_FIRST(bioq)) != NULL) {
1128 GJQ_REMOVE(bioq, bp);
1237 struct bio **bioq; local
1262 bioq = &sc->sc_active.jj_queue;
1321 g_journal_insert(bioq, ent->je_offset,
1373 struct bio *bioq, *b local
[all...]

Completed in 122 milliseconds