| 515 | extern caddr_t unmapped_buf; /* Data address for unmapped buffers. */ |
| 516 | |
| 517 | static inline int |
| 518 | buf_mapped(struct buf *bp) |
| 519 | { |
| 520 | |
| 521 | return (bp->b_data != unmapped_buf); |
| 522 | } |
| 523 | |
| 524 | void runningbufwakeup(struct buf *); |
| 525 | void waitrunningbufspace(void); |
no outgoing calls
no test coverage detected