* Perform a pagecache lookup for the matching buffer. If it's there, refre * it in the LRU and mark it as accessed. If it is not present then return * NULL */
| 911 | * NULL |
| 912 | */ |
| 913 | struct buffer_head * |
| 914 | __find_get_block(struct block_device *bdev, sector_t block, unsigned long size) |
| 915 | { |
| 916 | return __getblk(bdev, block, size); |
| 917 | } |
| 918 | |
| 919 | |
| 920 | // |
no test coverage detected