diff options
| author | Theodore Ts'o <tytso@mit.edu> | 2015-01-22 12:11:18 -0500 |
|---|---|---|
| committer | Mister Oyster <oysterized@gmail.com> | 2017-05-27 19:39:48 +0200 |
| commit | 85824f4b577a1b89952816745dc524feada6563a (patch) | |
| tree | 8dc7167583806492bd7dcc7a510bbdcc29bbcbd2 /include/linux/buffer_head.h | |
| parent | db95a5fbb77e51d4d144d2d953a08696ffd16a6b (diff) | |
buffer_head.h: add sb_bread_unmovable() for 3.18 ext4 backport
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'include/linux/buffer_head.h')
| -rw-r--r-- | include/linux/buffer_head.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 6f1052361..e9ff23981 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h @@ -322,6 +322,12 @@ sb_bread_unmovable(struct super_block *sb, sector_t block) } #endif +static inline struct buffer_head * +sb_bread_unmovable(struct super_block *sb, sector_t block) +{ + return sb_bread(sb, block); +} + static inline void sb_breadahead(struct super_block *sb, sector_t block) { |
