btrfs-progs: cmd_find_new: Sync fs before searching for modified files.
authorchandan <chandan@linux.vnet.ibm.com>
Mon, 23 Sep 2013 18:17:11 +0000 (23:47 +0530)
committerChris Mason <chris.mason@fusionio.com>
Wed, 16 Oct 2013 12:23:11 +0000 (08:23 -0400)
The sync makes sure that 'very recently' introduced delayed work is
accounted for in the output of 'btrfs subvolume find-new' command.

Signed-off-by: chandan <chandan@linux.vnet.ibm.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
cmds-subvolume.c

index de246ab..8832303 100644 (file)
@@ -786,6 +786,15 @@ static int cmd_find_new(int argc, char **argv)
                fprintf(stderr, "ERROR: can't access '%s'\n", subvol);
                return 1;
        }
+
+       ret = ioctl(fd, BTRFS_IOC_SYNC);
+       if (ret < 0) {
+               fprintf(stderr, "ERROR: unable to fs-syncing '%s' - %s\n",
+                       subvol, strerror(errno));
+               close_file_or_dir(fd, dirstream);
+               return 1;
+       }
+
        ret = btrfs_list_find_updated_files(fd, 0, last_gen);
        close_file_or_dir(fd, dirstream);
        return !!ret;