From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D4082C28CC5 for ; Wed, 5 Jun 2019 15:02:36 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id AD190206B8 for ; Wed, 5 Jun 2019 15:02:36 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org AD190206B8 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([127.0.0.1]:44137 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hYXQy-0002qL-0V for qemu-devel@archiver.kernel.org; Wed, 05 Jun 2019 11:02:36 -0400 Received: from eggs.gnu.org ([209.51.188.92]:35115) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hYXNP-0000OT-TV for qemu-devel@nongnu.org; Wed, 05 Jun 2019 10:58:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hYXNP-0002Qv-0d for qemu-devel@nongnu.org; Wed, 05 Jun 2019 10:58:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57498) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hYXNO-0002ON-Ri for qemu-devel@nongnu.org; Wed, 05 Jun 2019 10:58:54 -0400 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id D123E30C3196 for ; Wed, 5 Jun 2019 14:58:52 +0000 (UTC) Received: from localhost (ovpn-112-54.ams2.redhat.com [10.36.112.54]) by smtp.corp.redhat.com (Postfix) with ESMTP id AA723620A0; Wed, 5 Jun 2019 14:58:44 +0000 (UTC) From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= To: qemu-devel@nongnu.org Date: Wed, 5 Jun 2019 16:58:27 +0200 Message-Id: <20190605145829.7674-4-marcandre.lureau@redhat.com> In-Reply-To: <20190605145829.7674-1-marcandre.lureau@redhat.com> References: <20190605145829.7674-1-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.40]); Wed, 05 Jun 2019 14:58:52 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 3/5] vhost-user: improve error report X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , Gerd Hoffmann , "Michael S. Tsirkin" Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" g_printerr() needs a trailing \n Signed-off-by: Marc-Andr=C3=A9 Lureau --- contrib/vhost-user-gpu/main.c | 2 +- contrib/vhost-user-input/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/vhost-user-gpu/main.c b/contrib/vhost-user-gpu/main.= c index e0b6df5b4d..0ef649ffaa 100644 --- a/contrib/vhost-user-gpu/main.c +++ b/contrib/vhost-user-gpu/main.c @@ -1170,7 +1170,7 @@ main(int argc, char *argv[]) fd =3D opt_fdnum; } if (fd =3D=3D -1) { - g_printerr("Invalid socket"); + g_printerr("Invalid vhost-user socket.\n"); exit(EXIT_FAILURE); } =20 diff --git a/contrib/vhost-user-input/main.c b/contrib/vhost-user-input/m= ain.c index 8b854117f5..54f882602a 100644 --- a/contrib/vhost-user-input/main.c +++ b/contrib/vhost-user-input/main.c @@ -377,7 +377,7 @@ main(int argc, char *argv[]) fd =3D opt_fdnum; } if (fd =3D=3D -1) { - g_printerr("Invalid socket"); + g_printerr("Invalid vhost-user socket.\n"); exit(EXIT_FAILURE); } vug_init(&vi.dev, fd, vi_panic, &vuiface); --=20 2.22.0.rc2.384.g1a9a72ea1d From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 14698C31E50 for ; Sun, 16 Jun 2019 21:42:32 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id DA75C20679 for ; Sun, 16 Jun 2019 21:42:31 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org DA75C20679 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:43060 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hccv1-000473-0k for qemu-devel@archiver.kernel.org; Sun, 16 Jun 2019 17:42:31 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40924) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hccoy-0006cN-Kp for qemu-devel@nongnu.org; Sun, 16 Jun 2019 17:36:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hccox-0006U8-6O for qemu-devel@nongnu.org; Sun, 16 Jun 2019 17:36:16 -0400 Received: from mail-qt1-f181.google.com ([209.85.160.181]:45068) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hccov-0006Mw-8S for qemu-devel@nongnu.org; Sun, 16 Jun 2019 17:36:13 -0400 Received: by mail-qt1-f181.google.com with SMTP id j19so8529319qtr.12 for ; Sun, 16 Jun 2019 14:36:11 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to; bh=0Gmea495QVVLM6xw0J88mG+RZ+DViLSf/FZoEgunIws=; b=ETipsgvkAia9HseAOi5hXIJbwsUkws+7BtHpZNyuJLKl/zG+lB1TdA0Ym2pTG868Fb RldNYMb1RLkaCMtrVS9lS8nRgrKtmmLJARCr2qHW4vQEv+E0EKlty7ChQk1QxjBuk9A2 iuNURL8hkaVat+HS/sRTghv3Vfi5Uadjz/WblGrfWB+5e7+GXZ1gJ4JnPHLcqcvuxysS H9lQtaYHLxkxMe4LKh4nJrZ3eJiMFXLu+hgdRM1BuRNtFeP/e8BUA9z3K+GgGloR6Yvg h1J+0F6tAUTu9xjJfQAzXFaEsduSh7oZvP+3z28vufoW40BSBBB+DeyPuzQfR66SAdLz +oSA== X-Gm-Message-State: APjAAAWnp/UwJbeO96FzQIOfJUK+Oxk14LTtHxUehGridV0zD/77V1Yq 1Pj3+JO3u8OQApr5GnyCCbEk2UbwQ1o= X-Google-Smtp-Source: APXvYqzRW3+iINqJ4zRkGzV/YgOvIEY08R3WnnLeE2GH8m6h5HGLmPPnG5NWlul/RAZKxOhjsGC8ng== X-Received: by 2002:ac8:2dfd:: with SMTP id q58mr84556004qta.379.1560720970650; Sun, 16 Jun 2019 14:36:10 -0700 (PDT) Received: from redhat.com (pool-100-0-197-103.bstnma.fios.verizon.net. [100.0.197.103]) by smtp.gmail.com with ESMTPSA id q2sm5379629qkf.44.2019.06.16.14.36.09 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Sun, 16 Jun 2019 14:36:09 -0700 (PDT) Date: Sun, 16 Jun 2019 17:36:09 -0400 From: "Michael S. Tsirkin" To: qemu-devel@nongnu.org Message-ID: <20190605145829.7674-4-marcandre.lureau@redhat.com> References: <20190616213540.20430-1-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20190616213540.20430-1-mst@redhat.com> X-Mailer: git-send-email 2.17.1.1206.gb667731e2e.dirty X-Mutt-Fcc: =sent X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.85.160.181 Subject: [Qemu-devel] [PULL 03/11] vhost-user: improve error report X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Maydell , Gerd Hoffmann , =?utf-8?Q?Marc-Andr=C3=A9?= Lureau Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Message-ID: <20190616213609.PmhlpWhPuZ1Xy5wQVJU0ohiKNNKArkRvpaFqiqQkcds@z> From: Marc-André Lureau g_printerr() needs a trailing \n Signed-off-by: Marc-André Lureau Message-Id: <20190605145829.7674-4-marcandre.lureau@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- contrib/vhost-user-gpu/main.c | 2 +- contrib/vhost-user-input/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/vhost-user-gpu/main.c b/contrib/vhost-user-gpu/main.c index e0b6df5b4d..0ef649ffaa 100644 --- a/contrib/vhost-user-gpu/main.c +++ b/contrib/vhost-user-gpu/main.c @@ -1170,7 +1170,7 @@ main(int argc, char *argv[]) fd = opt_fdnum; } if (fd == -1) { - g_printerr("Invalid socket"); + g_printerr("Invalid vhost-user socket.\n"); exit(EXIT_FAILURE); } diff --git a/contrib/vhost-user-input/main.c b/contrib/vhost-user-input/main.c index 8b854117f5..54f882602a 100644 --- a/contrib/vhost-user-input/main.c +++ b/contrib/vhost-user-input/main.c @@ -377,7 +377,7 @@ main(int argc, char *argv[]) fd = opt_fdnum; } if (fd == -1) { - g_printerr("Invalid socket"); + g_printerr("Invalid vhost-user socket.\n"); exit(EXIT_FAILURE); } vug_init(&vi.dev, fd, vi_panic, &vuiface); -- MST