From d3be5b65dab602104829379144b22426f6b08206 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 6 Oct 2015 11:32:16 +0200 Subject: btrfs-progs: subvol sync: fix reversed condition In my local change to 07cc891d1d9819d5cf0628af555e7727d289cf7b ("btrfs-progs: Simplify all-subvolumn-clean condition for wait_for_subvolume_cleaning") that reversed the meaning of the variable dirty -> clean, I made a mistake and broke 'subvol sync' that will not wait as expected and ends prematurely. Zhao Lei's original patch worked. CC: Zhao Lei Signed-off-by: David Sterba --- cmds-subvolume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmds-subvolume.c') diff --git a/cmds-subvolume.c b/cmds-subvolume.c index 82173c04..c40330a3 100644 --- a/cmds-subvolume.c +++ b/cmds-subvolume.c @@ -89,7 +89,7 @@ static int wait_for_subvolume_cleaning(int fd, int count, u64 *ids, clean = 0; } } - if (clean == 0) + if (clean) break; sleep(sleep_interval); } -- cgit v1.2.3