diff options
author | Theodore Ts'o <tytso@mit.edu> | 2014-08-29 20:52:15 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2014-08-29 20:52:15 -0400 |
commit | 1c2150283cae895526d0db3953d13d139f4e7a03 (patch) | |
tree | 056daeae23f869aab5bbaec535ebe3eee5f19c35 /fs/ext4/ext4.h | |
parent | 1056008226769fe982236c26038a095aeb47714b (diff) |
ext4: convert ext4_bread() to use the ERR_PTR convention
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ext4.h')
-rw-r--r-- | fs/ext4/ext4.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index 8009077079e4..ca53bcece838 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h | |||
@@ -2087,8 +2087,7 @@ extern int ext4_trim_fs(struct super_block *, struct fstrim_range *); | |||
2087 | 2087 | ||
2088 | /* inode.c */ | 2088 | /* inode.c */ |
2089 | struct buffer_head *ext4_getblk(handle_t *, struct inode *, ext4_lblk_t, int); | 2089 | struct buffer_head *ext4_getblk(handle_t *, struct inode *, ext4_lblk_t, int); |
2090 | struct buffer_head *ext4_bread(handle_t *, struct inode *, | 2090 | struct buffer_head *ext4_bread(handle_t *, struct inode *, ext4_lblk_t, int); |
2091 | ext4_lblk_t, int, int *); | ||
2092 | int ext4_get_block_write(struct inode *inode, sector_t iblock, | 2091 | int ext4_get_block_write(struct inode *inode, sector_t iblock, |
2093 | struct buffer_head *bh_result, int create); | 2092 | struct buffer_head *bh_result, int create); |
2094 | int ext4_get_block(struct inode *inode, sector_t iblock, | 2093 | int ext4_get_block(struct inode *inode, sector_t iblock, |