From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 18B1A392802; Sat, 12 Sep 2026 19:59:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789243150; cv=none; b=i57Cbu27kqcG+r+29K0f/eAORq43oOQfEZ0Dve4LbRSuMwJiFFH3udj+jBMGE9HssY4m6qrSbAenAZ7Pw2svmoacevYkztACoMUe8GgFLvb2Yb7g94mDO6VxKiPMgcCmGb8rGy6Bhnl7m38AVeFgYNIjVuUZ/2J3twdscmiwDF4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789243150; c=relaxed/simple; bh=1j3TwwGpo+4TUoPVaV2yZL5juf+DEKUzykyZdPtSpDQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=d6K9FWL/HBHN07MtK+U2q+84Z0SrZplQLfHGaMgsPznBPPaCMqY5lmCbL/Scvo0DKZV55ZMxRIaCtj8v+yfGI497LXWdUOnKuLS+RrIySlpgLj+BJCMIHJbeKnraJFf2mkOlbCYXICJ/RRNeLMmDQ6q2o8Azo0exVSme0XqnRRA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=MsIlwpMn; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="MsIlwpMn" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 61A041F000FF; Sat, 12 Sep 2026 19:59:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789243148; bh=hmj2jhX5/SpTPXAt5c9QzdselyjP/F6AkHabOfs0cFg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=MsIlwpMn/ZM+kZLOrdgYTpSloPUsTEe3ssvxx4jV/YqHgbw10fFgNatd7+CuR5Atp vZuQ4Rz3ndaH4rpEWWrF++4Tc7G/v+ZPrLToR6ZFMEAj+jwOoJOsyvq5TSRxUQgaZM V+mzvx5aB6oq1xSmXVid5YzO9g1cEBuIGMokM+HY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Sergei Litvin , Miguel Ojeda , Nicolas Schier , Nicolas Schier , Sasha Levin Subject: [PATCH 5.10 611/798] scripts/tags.sh: Prevent binary files appearing in cscope.files Date: Sat, 12 Sep 2026 09:03:59 +0200 Message-ID: <20260912065531.127040984@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065516.948645775@linuxfoundation.org> References: <20260912065516.948645775@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Sergei Litvin [ Upstream commit a9b93c34625a27bed5dc0f80ee2a359ceb955172 ] When executing the command `make COMPILED_SOURCE=1 cscope`, the resulting `cscope.files` file contains filenames with the extensions *.rlib, *.rmeta, and *.so. To fix this, modify the regular expression in the `all_compiled_sources()` function so that only files with the extensions *.h, *.c, *.S, and *.rs are accepted. The issue has been introduced by commit 4f491bb6ea2a ("scripts/tags.sh: collect compiled source precisely") which implemented the parsing of compiled sources from *.cmd files instead of using the "find" command. Fixes: 4f491bb6ea2a ("scripts/tags.sh: collect compiled source precisely") Signed-off-by: Sergei Litvin Acked-by: Miguel Ojeda Tested-by: Nicolas Schier Reviewed-by: Nicolas Schier Link: https://patch.msgid.link/20260714083331.69482-1-litvindev@gmail.com [nsc: cleaned-up commit message line breaks and removed cc trailers] Signed-off-by: Nicolas Schier Signed-off-by: Sasha Levin --- scripts/tags.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tags.sh b/scripts/tags.sh index 5dd016e48e1ac..905126ed75bcf 100755 --- a/scripts/tags.sh +++ b/scripts/tags.sh @@ -105,7 +105,7 @@ all_compiled_sources() { echo include/generated/autoconf.h find $ignore -name "*.cmd" -exec \ - grep -Poh '(?<=^ )\S+|(?<== )\S+[^\\](?=$)' {} \+ | + grep -Poh '(?<=^ )\S+\.([chS]|rs)(?=\s)|(?<== )\S+\.(?1)(?=$)' {} \+ | awk '!a[$0]++' } | xargs realpath -es $([ -z "$KBUILD_ABS_SRCTREE" ] && echo --relative-to=.) | sort -u -- 2.53.0