| 781 | #endif |
| 782 | |
| 783 | struct buffer_head * |
| 784 | __getblk( |
| 785 | struct block_device * bdev, |
| 786 | sector_t block, |
| 787 | unsigned long size |
| 788 | ) |
| 789 | { |
| 790 | return get_block_bh(bdev, block, size, 0); |
| 791 | } |
| 792 | |
| 793 | void __brelse(struct buffer_head *bh) |
| 794 | { |
no test coverage detected