xfs
[Top] [All Lists]

[PATCH 5/5] xfs_io: print dedupe errors to stderr, not stdout

To: david@xxxxxxxxxxxxx, darrick.wong@xxxxxxxxxx
Subject: [PATCH 5/5] xfs_io: print dedupe errors to stderr, not stdout
From: "Darrick J. Wong" <darrick.wong@xxxxxxxxxx>
Date: Fri, 22 Jan 2016 16:35:31 -0800
Cc: xfs@xxxxxxxxxxx
Delivered-to: xfs@xxxxxxxxxxx
In-reply-to: <20160123003502.2475.99558.stgit@xxxxxxxxxxxxxxxx>
References: <20160123003502.2475.99558.stgit@xxxxxxxxxxxxxxxx>
User-agent: StGit/0.17.1-dirty
Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx>
---
 io/reflink.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)


diff --git a/io/reflink.c b/io/reflink.c
index def01be..a09e82d 100644
--- a/io/reflink.c
+++ b/io/reflink.c
@@ -78,11 +78,13 @@ dedupe_ioctl(
                        goto done;
                }
                if (info->status < 0) {
-                       printf("dedupe: %s\n", _(strerror(-info->status)));
+                       fprintf(stderr, "dedupe: %s\n",
+                                       _(strerror(-info->status)));
                        goto done;
                }
                if (info->status == XFS_EXTENT_DATA_DIFFERS) {
-                       printf(_("Extents did not match.\n"));
+                       fprintf(stderr, "dedupe: %s\n",
+                                       _("Extents did not match."));
                        goto done;
                }
                if (args->length != 0 &&

<Prev in Thread] Current Thread [Next in Thread>