diff options
author | Miao Xie <miaox@cn.fujitsu.com> | 2013-01-22 10:49:33 (GMT) |
---|---|---|
committer | Josef Bacik <jbacik@fusionio.com> | 2013-02-20 14:37:21 (GMT) |
commit | 3edb2a68cb23cd6ca84022421eeae2604722cdc4 (patch) | |
tree | c6755d624d37cc02672e1aa47ab3d9c80d160576 /fs/btrfs/transaction.c | |
parent | e6ec716f0ddbe51741ef261d0804f0c28038dda4 (diff) | |
download | linux-3edb2a68cb23cd6ca84022421eeae2604722cdc4.tar.xz |
Btrfs: check the return value of btrfs_start_delalloc_inodes()
We forget to check the return value of btrfs_start_delalloc_inodes(), fix it.
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs/btrfs/transaction.c')
-rw-r--r-- | fs/btrfs/transaction.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c index 24fde97..42dac27 100644 --- a/fs/btrfs/transaction.c +++ b/fs/btrfs/transaction.c @@ -1427,7 +1427,9 @@ static int btrfs_flush_all_pending_stuffs(struct btrfs_trans_handle *trans, } if (flush_on_commit || snap_pending) { - btrfs_start_delalloc_inodes(root, 1); + ret = btrfs_start_delalloc_inodes(root, 1); + if (ret) + return ret; btrfs_wait_ordered_extents(root, 1); } |