* Check to see if a block is currently memory resident. */
| 3608 | * Check to see if a block is currently memory resident. |
| 3609 | */ |
| 3610 | struct buf * |
| 3611 | incore(struct bufobj *bo, daddr_t blkno) |
| 3612 | { |
| 3613 | return (gbincore_unlocked(bo, blkno)); |
| 3614 | } |
| 3615 | |
| 3616 | /* |
| 3617 | * Returns true if no I/O is needed to access the |
no test coverage detected