Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 98bd5c54 authored by David Sterba's avatar David Sterba Committed by Chris Mason
Browse files

btrfs: sync ioctl, handle errors after transaction start



The version merged to 3.19 did not handle errors from start_trancaction
and could pass an invalid pointer to commit_transaction.

Fixes: 6b5fe46d ("btrfs: do commit in sync_fs if there are pending changes")
Reported-by: default avatarFilipe Manana <fdmanana@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.cz>
Signed-off-by: default avatarChris Mason <clm@fb.com>
parent 6f896054
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1001,9 +1001,9 @@ int btrfs_sync_fs(struct super_block *sb, int wait)
			if (fs_info->pending_changes == 0)
				return 0;
			trans = btrfs_start_transaction(root, 0);
		} else {
			return PTR_ERR(trans);
		}
		if (IS_ERR(trans))
			return PTR_ERR(trans);
	}
	return btrfs_commit_transaction(trans, root);
}