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 EC37A4A35; Sat, 12 Sep 2026 19:00:28 +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=1789239630; cv=none; b=BVRbgO9L+FIweQFiRvsrtHETUG+SGLxOWNrMDzMEHpvIiiHG7C282SgXIBiLT9/BkAKnTnDJD6ytbiFDL+3XS/3MNM8BK5PkKC8rpaG55zfRO2n1EbBr7axRLrJ/YaTGfwU8MGaWQp5/p7MYMvQ7biwXeFW74iQPyK+6glD3JLY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789239630; c=relaxed/simple; bh=wT35liSl12pq3ODN2eaPNtpBPZAitNrven13BHnWYnI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=khmGyK2LNVbCSlR2i8HC/a/LmAH+PiaEV5PZFByZvbtySU/B+WXIeQIEPlQoiiE1cBcdZVnhOq1sdk6DRvIo0Y5oLd+aCetTu/7V5CDPrUPUwJX/jefDjjHipIA4pD6w4X5OSHe5ZXb9Sj8YeQOXkgiPugyVppoMl4NV2LZbj+E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=fumHRLC0; 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="fumHRLC0" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A7D971F000FF; Sat, 12 Sep 2026 19:00:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789239628; bh=qAqwhduxzRxchEc8kiGFRaB3hWc0kOjm9qZMwCrYwZg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=fumHRLC0Ol0F90o0HOSgjbM0mGaBdPuj8OtbDPgNlk9bFl4B4HyyVO3hmrAd98jVd bSzZLn0plnekqP4ck7Lc00F9lAvfLd0TBnideCHxUOtLXu7ArdB/pt+7Neyo2INSLl dbdTtjJsPIjMxknM/RUjGtYwCAIZ8jadvZL2Z118= 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.15 702/935] scripts/tags.sh: Prevent binary files appearing in cscope.files Date: Sat, 12 Sep 2026 09:02:12 +0200 Message-ID: <20260912065542.937384676@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065526.833703348@linuxfoundation.org> References: <20260912065526.833703348@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.15-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 b030fc5fb76ca..26a9178203157 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