From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3FC5937D139 for ; Tue, 10 Mar 2026 10:54:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773140077; cv=none; b=n3dbbfItOkrILOBrr/Cb6XluapNRreYIuMKYcVBdwDNjVJqp3iYfOr7sxSQyLn1RPHeocOyH78hfhtCDkibjujbhjOS99zXzCweDEJOp/x08BntZuxBB/iIkzjQ/EzCtDpCB58mZtGDzgIQLY5MaPJpa91UsTNCNvgevcvKGeQc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773140077; c=relaxed/simple; bh=YojY7SADYsX10JqwwxWP40HZR1g0zM1hzeKHVmZjYF8=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=YnJKVY8GGHBEC7ENB8cedjmxN9l9qgXzbOpNlMwb3HJtN8Qz4qGbmqQC1Lj/SpAPq2J51I3sp90afN5Fjj61H8bjmY2vnGKux9x2ETCj+VkqdsIPcspoaAIkJdTcMpVvTfVNpJ/C3ScF7kkLjz9JeNcDWfk0GGHJAF7Rg1pM/J8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=CR7tzUL2; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="CR7tzUL2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 138C9C19423; Tue, 10 Mar 2026 10:54:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1773140076; bh=YojY7SADYsX10JqwwxWP40HZR1g0zM1hzeKHVmZjYF8=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=CR7tzUL2OdMLsgES5got4Zz3U9I2+dwE++YfXDFAEGgcAJGyaJlJvs0l92R++jI0j PcybfXq3VR45+DI1T3iWZD6vWWiIR3cusqklYjrEqMSTM7xjqXo6rPGiViyf17QoUD W7BwipJSE7iAB+q5FBK/QBxY0lL8G6EAZF1vbvyT0k3ksma2v8nyfXCyu/S4tsM5UK ARWteUHLH1cJxDE3JTPsqK15aPX0SKo9Vy+c7g7XTsllU0iFiiczOr2baDzZH6+3Jl LG28rjzkqmMe5hQeijfjP3TJh3icEt7Z9+q0U7eATlOSKCukwuJbOc+OHhtwUwQfnR WVuWv+3OeSvuA== Message-ID: <3f26916b-5a1f-40b0-9c47-8b53e066e08c@kernel.org> Date: Tue, 10 Mar 2026 11:54:31 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] selftests/powerpc: Suppress false positive -Wmaybe-uninitialized with GCC 15 To: Amit Machhiwal , Madhavan Srinivasan , linuxppc-dev@lists.ozlabs.org Cc: Vaibhav Jain , Michael Ellerman , Nicholas Piggin , Greg Kurz , linux-kernel@vger.kernel.org References: <20260310101519.67157-1-amachhiw@linux.ibm.com> Content-Language: fr-FR From: "Christophe Leroy (CS GROUP)" In-Reply-To: <20260310101519.67157-1-amachhiw@linux.ibm.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Le 10/03/2026 à 11:15, Amit Machhiwal a écrit : > GCC 15 reports the below false positive '-Wmaybe-uninitialized' warning > in vphn_unpack_associativity() when building the powerpc selftests. > > # make -C tools/testing/selftests TARGETS="powerpc" > [...] > CC test-vphn > In file included from test-vphn.c:3: > In function ‘vphn_unpack_associativity’, > inlined from ‘test_one’ at test-vphn.c:371:2, > inlined from ‘test_vphn’ at test-vphn.c:399:9: > test-vphn.c:10:33: error: ‘be_packed’ may be used uninitialized [-Werror=maybe-uninitialized] > 10 | #define be16_to_cpup(x) bswap_16(*x) > | ^~~~~~~~ > vphn.c:42:27: note: in expansion of macro ‘be16_to_cpup’ > 42 | u16 new = be16_to_cpup(field++); > | ^~~~~~~~~~~~ > In file included from test-vphn.c:19: > vphn.c: In function ‘test_vphn’: > vphn.c:27:16: note: ‘be_packed’ declared here > 27 | __be64 be_packed[VPHN_REGISTER_COUNT]; > | ^~~~~~~~~ > cc1: all warnings being treated as errors > > When vphn_unpack_associativity() is called from hcall_vphn(), this error > is not seen during compilation because GCC 15 seems to consider 'retbuf' > always populated from the hypervisor which is eventually referred by > 'be_packed'. However, GCC 15's dataflow analysis can’t prove the same > before the first dereference when vphn_unpack_associativity() is called > from test_one() with pre-initialized array of 'struct test'. This > results in a false positive warning which is promoted to an error under > '-Werror'. This problem is not seen when the compilation is performed > with GCC 13 and 14. > > Suppress the warning locally around the offending statement when > building with GCC 15 using a diagnostic pragma. This keeps the build > working while limiting the scope of the suppression to the specific > statement that triggers the false positive. An issue [1] has also been > created on GCC bugzilla. Usually when we get this kind of warning this is because the code is too complex. We should try to make it more obvious instead of just hiding the warning. Here the for loop is a bit misleading. > > [1] https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgcc.gnu.org%2Fbugzilla%2Fshow_bug.cgi%3Fid%3D124427&data=05%7C02%7Cchristophe.leroy%40csgroup.eu%7C06a4d55b55f24c5cf00208de7e8e3676%7C8b87af7d86474dc78df45f69a2011bb5%7C0%7C0%7C639087346428583316%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=xEfO94N6IfGYhmmapNFduv3OrMarxpjTpZR6B38uR1s%3D&reserved=0 > > Fixes: 58dae82843f5 ("selftests/powerpc: Add test for VPHN") > Reviewed-by: Vaibhav Jain > Signed-off-by: Amit Machhiwal > --- > arch/powerpc/platforms/pseries/vphn.c | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > > diff --git a/arch/powerpc/platforms/pseries/vphn.c b/arch/powerpc/platforms/pseries/vphn.c > index 3f85ece3c872..9bc891143fec 100644 > --- a/arch/powerpc/platforms/pseries/vphn.c > +++ b/arch/powerpc/platforms/pseries/vphn.c > @@ -39,7 +39,22 @@ static int vphn_unpack_associativity(const long *packed, __be32 *unpacked) > be_packed[i] = cpu_to_be64(packed[i]); > > for (i = 1; i < VPHN_ASSOC_BUFSIZE; i++) { > +/* > + * When this function is called from hcall_vphn(), GCC 15 seems to consider > + * 'retbuf' always populated from the hypervisor which is eventually referred by > + * 'be_packed'. However, GCC 15's dataflow analysis can’t prove the same before > + * the first dereference when this function is called from test_one() with > + * pre-initialized array of 'struct test'. This results in a false positive > + * '-Wmaybe-uninitialized' warning which is promoted to an error under > + * '-Werror'. This problem is not seen when the compilation is performed with > + * older GCC versions. > + */ > +#pragma GCC diagnostic push > +#if defined(__GNUC__) && __GNUC__ >= 15 > +#pragma GCC diagnostic ignored "-Wmaybe-uninitialized" > +#endif > u16 new = be16_to_cpup(field++); > +#pragma GCC diagnostic pop > > if (is_32bit) { > /* > > base-commit: 1f318b96cc84d7c2ab792fcc0bfd42a7ca890681