| 178 | } |
| 179 | |
| 180 | void |
| 181 | bioq_flush(struct bio_queue_head *head, struct devstat *stp, int error) |
| 182 | { |
| 183 | struct bio *bp; |
| 184 | |
| 185 | while ((bp = bioq_takefirst(head)) != NULL) |
| 186 | biofinish(bp, stp, error); |
| 187 | } |
| 188 | |
| 189 | void |
| 190 | bioq_insert_head(struct bio_queue_head *head, struct bio *bp) |
nothing calls this directly
no test coverage detected