diff options
author | Theodore Ts'o <tytso@mit.edu> | 2013-07-29 12:12:56 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2013-07-29 12:12:56 -0400 |
commit | 94eec0fc3520c759831763d866421b4d60b599b4 (patch) | |
tree | 9aa5ab1444110592370ce775fdb6499badc3f402 /fs | |
parent | dd12ed144e9797094c04736f97aa27d5fe401476 (diff) | |
download | blackbird-op-linux-94eec0fc3520c759831763d866421b4d60b599b4.tar.gz blackbird-op-linux-94eec0fc3520c759831763d866421b4d60b599b4.zip |
ext4: fix retry handling in ext4_ext_truncate()
We tested for ENOMEM instead of -ENOMEM. Oops.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Cc: stable@vger.kernel.org
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/extents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index a61873808f76..72ba4705d4fa 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -4412,7 +4412,7 @@ void ext4_ext_truncate(handle_t *handle, struct inode *inode) retry: err = ext4_es_remove_extent(inode, last_block, EXT_MAX_BLOCKS - last_block); - if (err == ENOMEM) { + if (err == -ENOMEM) { cond_resched(); congestion_wait(BLK_RW_ASYNC, HZ/50); goto retry; |