| 416 | } |
| 417 | |
| 418 | static void buffer_head_insert(struct block_device *bdev, struct buffer_head *bh) |
| 419 | { |
| 420 | rb_insert(&bdev->bd_bh_root, &bh->b_rb_node, buffer_head_blocknr_cmp); |
| 421 | } |
| 422 | |
| 423 | void buffer_head_remove(struct block_device *bdev, struct buffer_head *bh) |
| 424 | { |
no test coverage detected