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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5CC59C433FE for ; Thu, 6 Jan 2022 09:32:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237446AbiAFJcg (ORCPT ); Thu, 6 Jan 2022 04:32:36 -0500 Received: from dfw.source.kernel.org ([139.178.84.217]:53548 "EHLO dfw.source.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236552AbiAFJcf (ORCPT ); Thu, 6 Jan 2022 04:32:35 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 0912961B13; Thu, 6 Jan 2022 09:32:35 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B921DC36AE5; Thu, 6 Jan 2022 09:32:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1641461554; bh=ftjlVIE88difaa6YOW416g8IrMlFSVbJJ74FffwzjNg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=OCsHU/ICJmjDVlFG0oUKGtRXwCPFqounhngvPBM+nR183prLmf3MsSxBjChc1IkJE 9h58560a9all1SuCeHO5dH73N/J8tgzF0ENNo3to3Yy7aCUJg2FCaFObJvSDq2GKzq avsOHaik5aEo5uM59sRSZL/RE9NtZhz1UZd7uRFg= Date: Thu, 6 Jan 2022 10:32:31 +0100 From: Greg Kroah-Hartman To: Naresh Kamboju Cc: linux-stable , "open list:KERNEL SELFTEST FRAMEWORK" , open list , lkft-triage@lists.linaro.org, X86 ML , Shuah Khan , Andy Lutomirski , Dave Hansen , Peter Zijlstra , Jann Horn , John Hubbard , Andrew Morton , "Kirill A. Shutemov" , Linus Torvalds , Anders Roxell Subject: Re: test_vsyscall.c:500:22: warning: '__builtin_memcmp_eq' specified bound 4096 exceeds source size 0 Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jan 06, 2022 at 02:55:53PM +0530, Naresh Kamboju wrote: > While building selftests the following warnings were noticed for x86_64 > architecture on Linux stable v5.15.13 kernel. > > metadata: > git repo: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git > git commit: 734eb1fd2073f503f5c6b44f1c0d453ca6986b84 > git describe: v5.15.13 > toolchain": gcc-11 > kernel-config: https://builds.tuxbuild.com/23HFo8abXIL6i4FFfSYiJlqAYMW/config > > x86_64-linux-gnu-gcc -m64 -o \ > /home/tuxbuild/.cache/tuxmake/builds/current/kselftest/x86/test_vsyscall_64 \ > -O2 -g -std=gnu99 -pthread -Wall -no-pie \ > -DCAN_BUILD_64 test_vsyscall.c helpers.h -lrt -ldl > > test_vsyscall.c: In function 'test_process_vm_readv': > test_vsyscall.c:500:22: warning: '__builtin_memcmp_eq' specified bound > 4096 exceeds source size 0 [-Wstringop-overread] > 500 | if (!memcmp(buf, (const void > *)0xffffffffff600000, 4096)) { > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > Reported-by: Linux Kernel Functional Testing > > Build link: > https://builds.tuxbuild.com/23HFo8abXIL6i4FFfSYiJlqAYMW/ > > # To install tuxmake on your system globally: > # sudo pip3 install -U tuxmake > > tuxmake --runtime podman --target-arch x86_64 --toolchain gcc-11 \ > --kconfig https://builds.tuxbuild.com/23HFo8abXIL6i4FFfSYiJlqAYMW/config \ > cpupower headers kernel kselftest kselftest-merge modules Is this a new regression from 5.15.0? Is it also present on Linus's tree? thanks, greg k-h