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 <[email protected]>
---
 fs/btrfs/transaction.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c
index 34c5b7b..80adf07 100644
--- a/fs/btrfs/transaction.c
+++ b/fs/btrfs/transaction.c
@@ -1441,9 +1441,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;
 }
 
 /*
-- 
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to