aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/transaction.c
diff options
context:
space:
mode:
authorMiao Xie <miaox@cn.fujitsu.com>2013-01-22 10:50:01 +0000
committerJosef Bacik <jbacik@fusionio.com>2013-02-20 09:37:22 -0500
commiteebc60840636e7351371fc17bcd057384bf0c16a (patch)
treec677b1a1a8fa127be41db51e1de62f7c3518b05e /fs/btrfs/transaction.c
parentBtrfs: check the return value of btrfs_start_delalloc_inodes() (diff)
downloadlinux-dev-eebc60840636e7351371fc17bcd057384bf0c16a.tar.xz
linux-dev-eebc60840636e7351371fc17bcd057384bf0c16a.zip
Btrfs: check the return value of btrfs_run_ordered_operations()
We forget to check the return value of btrfs_run_ordered_operations() when flushing all the pending stuffs, 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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c
index 42dac27207ab..34610dc6d140 100644
--- a/fs/btrfs/transaction.c
+++ b/fs/btrfs/transaction.c
@@ -1451,9 +1451,9 @@ static int btrfs_flush_all_pending_stuffs(struct btrfs_trans_handle *trans,
* it here and no for sure that nothing new will be added
* to the list
*/
- btrfs_run_ordered_operations(root, 1);
+ ret = btrfs_run_ordered_operations(root, 1);
- return 0;
+ return ret;
}
/*