From fc1aed0bf96259d0b46b1cfea7497b7762c4ee3d Mon Sep 17 00:00:00 2001 From: Eryu Guan Date: Fri, 9 Aug 2019 16:25:36 +0800 Subject: virtiofsd: convert more fprintf and perror to use fuse log infra MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Eryu Guan Reviewed-by: Daniel P. Berrangé Reviewed-by: Misono Tomohiro Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Dr. David Alan Gilbert --- tools/virtiofsd/helper.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'tools/virtiofsd/helper.c') diff --git a/tools/virtiofsd/helper.c b/tools/virtiofsd/helper.c index 33749bfcb7..f98d8f2eb2 100644 --- a/tools/virtiofsd/helper.c +++ b/tools/virtiofsd/helper.c @@ -208,7 +208,8 @@ int fuse_daemonize(int foreground) char completed; if (pipe(waiter)) { - perror("fuse_daemonize: pipe"); + fuse_log(FUSE_LOG_ERR, "fuse_daemonize: pipe: %s\n", + strerror(errno)); return -1; } @@ -218,7 +219,8 @@ int fuse_daemonize(int foreground) */ switch (fork()) { case -1: - perror("fuse_daemonize: fork"); + fuse_log(FUSE_LOG_ERR, "fuse_daemonize: fork: %s\n", + strerror(errno)); return -1; case 0: break; @@ -228,7 +230,8 @@ int fuse_daemonize(int foreground) } if (setsid() == -1) { - perror("fuse_daemonize: setsid"); + fuse_log(FUSE_LOG_ERR, "fuse_daemonize: setsid: %s\n", + strerror(errno)); return -1; } -- cgit v1.2.3