aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs
diff options
context:
space:
mode:
Diffstat (limited to 'fs/btrfs')
-rw-r--r--fs/btrfs/disk-io.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 0400a26fc8c5..9850a51a3f19 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -3133,7 +3133,10 @@ static int write_dev_supers(struct btrfs_device *device,
3133 * we fua the first super. The others we allow 3133 * we fua the first super. The others we allow
3134 * to go down lazy. 3134 * to go down lazy.
3135 */ 3135 */
3136 ret = btrfsic_submit_bh(WRITE_FUA, bh); 3136 if (i == 0)
3137 ret = btrfsic_submit_bh(WRITE_FUA, bh);
3138 else
3139 ret = btrfsic_submit_bh(WRITE_SYNC, bh);
3137 if (ret) 3140 if (ret)
3138 errors++; 3141 errors++;
3139 } 3142 }