| 157 | void biotrack_buf(struct bio *bp, const char *location); |
| 158 | |
| 159 | static __inline void |
| 160 | biotrack(struct bio *bp, const char *location) |
| 161 | { |
| 162 | |
| 163 | if (bp->bio_track_bp != NULL) |
| 164 | biotrack_buf(bp, location); |
| 165 | } |
| 166 | #else |
| 167 | static __inline void |
| 168 | biotrack(struct bio *bp __unused, const char *location __unused) |
no test coverage detected