If the new version of btrfs-file-show fails, it will try to use the old version. But before that, an error msg of the failed ioctl shows up which causes xfstests case btrfs/006 to get a mismatch output. I think we can just remove the error msg since the btrfs-file-show still works with right outputs. Showing an error msg together with the right result is really awkward.
Signed-off-by: Gui Hecheng <[email protected]> --- utils.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/utils.c b/utils.c index 12ed2f4..9408885 100644 --- a/utils.c +++ b/utils.c @@ -2206,8 +2206,6 @@ again: free(fsargs); goto again; } else if (ret < 0) { - printf("ERROR: scan_fsid ioctl failed - %s\n", - strerror(e)); ret = -e; goto out; } -- 1.8.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
