diff options
author | Theodore Ts'o <tytso@mit.edu> | 2013-01-13 01:19:36 +0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2013-01-13 01:19:36 +0400 |
commit | 860d21e2c585f7ee8a4ecc06f474fdc33c9474f4 (patch) | |
tree | f4b8f664599f043b7aa7b86a9a135aa275f0a5e2 /fs/ext4/inline.c | |
parent | 9931faca02c604c22335f5a935a501bb2ace6e20 (diff) | |
download | linux-860d21e2c585f7ee8a4ecc06f474fdc33c9474f4.tar.xz |
ext4: return ENOMEM if sb_getblk() fails
The only reason for sb_getblk() failing is if it can't allocate the
buffer_head. So ENOMEM is more appropriate than EIO. In addition,
make sure that the file system is marked as being inconsistent if
sb_getblk() fails.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Cc: stable@vger.kernel.org
Diffstat (limited to 'fs/ext4/inline.c')
-rw-r--r-- | fs/ext4/inline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c index 387c47c6cda9..93a3408fc89b 100644 --- a/fs/ext4/inline.c +++ b/fs/ext4/inline.c @@ -1188,7 +1188,7 @@ static int ext4_convert_inline_data_nolock(handle_t *handle, data_bh = sb_getblk(inode->i_sb, map.m_pblk); if (!data_bh) { - error = -EIO; + error = -ENOMEM; goto out_restore; } |