From nobody Wed Jan 15 11:46:48 2025 Delivered-To: importer@patchew.org Received-SPF: none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) client-ip=8.43.85.245; envelope-from=devel-bounces@lists.libvirt.org; helo=lists.libvirt.org; Authentication-Results: mx.zohomail.com; spf=none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) smtp.mailfrom=devel-bounces@lists.libvirt.org; dmarc=fail(p=quarantine dis=none) header.from=swemel.ru Return-Path: Received: from lists.libvirt.org (lists.libvirt.org [8.43.85.245]) by mx.zohomail.com with SMTPS id 1704896860019161.71675107687622; Wed, 10 Jan 2024 06:27:40 -0800 (PST) Received: by lists.libvirt.org (Postfix, from userid 996) id DC6C91CAC; Wed, 10 Jan 2024 09:27:38 -0500 (EST) Received: from lists.libvirt.org (localhost [IPv6:::1]) by lists.libvirt.org (Postfix) with ESMTP id 44ADA1C5F; Wed, 10 Jan 2024 09:22:45 -0500 (EST) Received: by lists.libvirt.org (Postfix, from userid 996) id 08D2D1C2C; Wed, 10 Jan 2024 09:22:21 -0500 (EST) Received: from mx.swemel.ru (mx.swemel.ru [95.143.211.150]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.libvirt.org (Postfix) with ESMTPS id 97EA51BEE for ; Wed, 10 Jan 2024 09:21:56 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on lists.libvirt.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,T_SCC_BODY_TEXT_LINE autolearn=unavailable autolearn_force=no version=3.4.4 From: Dmitry Frolov To: devel@lists.libvirt.org Subject: [PATCH v4 01/19] libxl: change type to void libxlPrepareChannel() Date: Wed, 10 Jan 2024 17:21:16 +0300 Message-Id: <20240110142134.915450-2-frolov@swemel.ru> In-Reply-To: <20240110142134.915450-1-frolov@swemel.ru> References: <47d3cbc0-003b-4829-8038-8e00bbdb5c85@redhat.com> <20240110142134.915450-1-frolov@swemel.ru> MIME-Version: 1.0 Message-ID-Hash: FFTCYEZDSVIULHOEPP2QNJETOTWCAAQP X-Message-ID-Hash: FFTCYEZDSVIULHOEPP2QNJETOTWCAAQP X-MailFrom: frolov@swemel.ru X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-config-1; header-match-config-2; header-match-config-3; header-match-devel.lists.libvirt.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header CC: sdl.libvirt@linuxtesting.org, Dmitry Frolov X-Mailman-Version: 3.2.2 Precedence: list List-Id: Development discussions about the libvirt library & tools Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1704896861136100001 libxlPrepareChannel() returns nothing except 0. Changing return type to void. Found by Linux Verification Center (linuxtesting.org) with SVACE. Signed-off-by: Dmitry Frolov --- src/libxl/libxl_conf.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/libxl/libxl_conf.c b/src/libxl/libxl_conf.c index 62e1be6672..712b1d627f 100644 --- a/src/libxl/libxl_conf.c +++ b/src/libxl/libxl_conf.c @@ -1937,7 +1937,7 @@ libxlDriverGetDom0MaxmemConf(libxlDriverConfig *cfg, } =20 =20 -static int +static void libxlPrepareChannel(virDomainChrDef *channel, const char *channelDir, const char *domainName) @@ -1954,8 +1954,6 @@ libxlPrepareChannel(virDomainChrDef *channel, =20 channel->source->data.nix.listen =3D true; } - - return 0; } =20 static int @@ -2011,8 +2009,7 @@ libxlMakeChannelList(const char *channelDir, if (l_channels[i]->deviceType !=3D VIR_DOMAIN_CHR_DEVICE_TYPE_CHAN= NEL) continue; =20 - if (libxlPrepareChannel(l_channels[i], channelDir, def->name) < 0) - goto error; + libxlPrepareChannel(l_channels[i], channelDir, def->name); =20 if (libxlMakeChannel(l_channels[i], &x_channels[nvchannels]) < 0) goto error; --=20 2.34.1 _______________________________________________ Devel mailing list -- devel@lists.libvirt.org To unsubscribe send an email to devel-leave@lists.libvirt.org