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

/freebsd-12-stable/sys/dev/nvd/
H A Dnvd.c77 struct bio_queue_head bioq; member in struct:nvd_disk
225 ndisk->cur_depth == 0 && bioq_first(&ndisk->bioq) == NULL) {
239 bioq_insert_tail(&ndisk->bioq, bp);
252 while ((bp = bioq_takefirst(&ndisk->bioq)) != NULL) {
370 bp = bioq_takefirst(&ndisk->bioq);
425 mtx_init(&ndisk->bioqlock, "nvd bioq lock", NULL, MTX_DEF);
426 bioq_init(&ndisk->bioq);
/freebsd-12-stable/sys/dev/cfi/
H A Dcfi_disk.c63 struct bio_queue_head bioq; /* bio queue */ member in struct:cfi_disk_softc
64 struct mtx qlock; /* bioq lock */
128 bioq_init(&sc->bioq);
147 /* XXX drain bioq */
273 bp = bioq_takefirst(&sc->bioq);
330 bioq_insert_tail(&sc->bioq, bp);
/freebsd-12-stable/sys/dev/nand/
H A Dnand_geom.c111 bioq_insert_tail(&chip->bioq, bp);
133 bioq_insert_tail(&chip->bioq, bp);
319 bp = bioq_takefirst(&chip->bioq);
429 bioq_init(&chip->bioq);
455 bp = bioq_takefirst(&chip->bioq);
H A Dnand.h321 struct bio_queue_head bioq; /* bio queue */ member in struct:nand_chip
322 struct mtx qlock; /* bioq lock */
/freebsd-12-stable/sys/dev/virtio/block/
H A Dvirtio_blk.c875 struct bio_queue_head *bioq; local
879 bioq = &sc->vtblk_bioq;
881 if (bioq_first(bioq) == NULL)
888 bp = bioq_takefirst(bioq);
1064 struct bio_queue_head *bioq; local
1068 bioq = &sc->vtblk_bioq;
1083 while (bioq_first(bioq) != NULL) {
1084 bp = bioq_takefirst(bioq);
/freebsd-12-stable/sys/geom/journal/
H A Dg_journal.c1113 struct bio *bioq, *bp, *lbp; local
1115 bioq = lbp = NULL;
1123 GJQ_INSERT_AFTER(bioq, bp, lbp);
1128 sc->sc_copy_in_progress += g_journal_optimize(bioq);
1129 while ((bp = GJQ_FIRST(bioq)) != NULL) {
1130 GJQ_REMOVE(bioq, bp);
1239 struct bio **bioq; local
1264 bioq = &sc->sc_active.jj_queue;
1323 g_journal_insert(bioq, ent->je_offset,
1375 struct bio *bioq, *b local
[all...]

Completed in 130 milliseconds