| 468 | } |
| 469 | |
| 470 | static __inline void |
| 471 | buf_track(struct buf *bp __unused, const char *location __unused) |
| 472 | { |
| 473 | |
| 474 | #if defined(FULL_BUF_TRACKING) |
| 475 | bp->b_io_tracking[BUF_TRACKING_ENTRY(bp->b_io_tcnt++)] = location; |
| 476 | #elif defined(BUF_TRACKING) |
| 477 | bp->b_io_tracking = location; |
| 478 | #endif |
| 479 | } |
| 480 | |
| 481 | #endif /* _KERNEL */ |
| 482 |
no outgoing calls
no test coverage detected