Home
last modified time | relevance | path

Searched refs:bio_next (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/geom/journal/
H A Dg_journal.h89 #define bio_next bio_caller1 macro
156 (bp)->bio_next = (head); \
163 (bp)->bio_next = (pbp)->bio_next; \
164 (pbp)->bio_next = (bp); \
174 for (_bp = (head); _bp->bio_next != NULL; _bp = _bp->bio_next) \
183 (head) = (bp)->bio_next; \
184 (bp)->bio_next = NULL; \
187 for (_bp = (head); _bp->bio_next != NULL; _bp = _bp->bio_next) {\
188 if (_bp->bio_next == (bp)) \
191 KASSERT(_bp->bio_next != NULL, ("NULL bio_next")); \
[all …]
H A Dg_journal.c851 pbp->bio_next = nbp; in g_journal_insert()
852 nbp->bio_next = cbp; in g_journal_insert()
911 nbp->bio_next = cbp->bio_next; in g_journal_insert()
912 cbp->bio_next = nbp; in g_journal_insert()
938 nbp->bio_next = cbp->bio_next; in g_journal_insert()
939 cbp->bio_next = nbp; in g_journal_insert()
946 nbp->bio_next = ((struct bio *)cbp->bio_next)->bio_next; in g_journal_insert()
947 ((struct bio *)cbp->bio_next)->bio_next = nbp; in g_journal_insert()
973 pbp->bio_next = nbp; in g_journal_insert()
974 nbp->bio_next = cbp; in g_journal_insert()
[all …]
/freebsd/sys/cam/
H A Dcam_iosched.c1530 bio_next(struct bio *bp) in bio_next() function
1587 bp = bio_next(bp)) { in cam_iosched_next_bio()