diff options
| -rw-r--r-- | include/linux/buffer_head.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 73b45225a7ca..e6797ded700e 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h | |||
| @@ -317,6 +317,13 @@ sb_getblk(struct super_block *sb, sector_t block) | |||
| 317 | return __getblk_gfp(sb->s_bdev, block, sb->s_blocksize, __GFP_MOVABLE); | 317 | return __getblk_gfp(sb->s_bdev, block, sb->s_blocksize, __GFP_MOVABLE); |
| 318 | } | 318 | } |
| 319 | 319 | ||
| 320 | |||
| 321 | static inline struct buffer_head * | ||
| 322 | sb_getblk_gfp(struct super_block *sb, sector_t block, gfp_t gfp) | ||
| 323 | { | ||
| 324 | return __getblk_gfp(sb->s_bdev, block, sb->s_blocksize, gfp); | ||
| 325 | } | ||
| 326 | |||
| 320 | static inline struct buffer_head * | 327 | static inline struct buffer_head * |
| 321 | sb_find_get_block(struct super_block *sb, sector_t block) | 328 | sb_find_get_block(struct super_block *sb, sector_t block) |
| 322 | { | 329 | { |
