From 5c87a1b92c249da0406226e1e8540dc383165ced Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 24 Jan 2017 17:46:10 +0100 Subject: [PATCH] btrfs-progs: qgroup show: do not error if sync fails The sync call is unlikely to fail so we optimistically turn it to a warning if that happens so we return inaccurate numbers instead of a hard exit. Signed-off-by: David Sterba --- cmds-qgroup.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/cmds-qgroup.c b/cmds-qgroup.c index 9b245b0..f4503fd 100644 --- a/cmds-qgroup.c +++ b/cmds-qgroup.c @@ -375,12 +375,9 @@ static int cmd_qgroup_show(int argc, char **argv) if (sync) { ret = ioctl(fd, BTRFS_IOC_SYNC); - if (ret < 0) { - error("sync ioctl failed on '%s': %s", path, + if (ret < 0) + warning("sync ioctl failed on '%s': %s", path, strerror(errno)); - close_file_or_dir(fd, dirstream); - goto out; - } } if (filter_flag) { -- 2.7.4