[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250605044405.2057511-1-quic_songchai@quicinc.com>
Date: Thu, 5 Jun 2025 12:44:05 +0800
From: Songwei Chai <quic_songchai@...cinc.com>
To: Julia Lawall <Julia.Lawall@...ia.fr>,
Nicolas Palix
<nicolas.palix@...g.fr>, <cocci@...ia.fr>
CC: <linux-kernel@...r.kernel.org>, <quic_songchai@...cinc.com>,
<quic_tingweiz@...cinc.com>, <quic_jinlmao@...cinc.com>
Subject: [PATCH v1] scripts: coccicheck: filter *.cocci files by MODE
Enhance the coccicheck script to filter *.cocci files based on the
specified MODE (e.g., report, patch). This ensures that only compatible
semantic patch files are executed, preventing errors such as:
"virtual rule report not supported"
This error occurs when a .cocci file does not define a 'virtual <MODE>'
rule, yet is executed in that mode.
For example:
make coccicheck M=drivers/hwtracing/coresight/ MODE=report
In this case, running "secs_to_jiffies.cocci" would trigger the error
because it lacks support for 'report' mode. With this change, such files
are skipped automatically, improving robustness and developer experience.
Signed-off-by: Songwei Chai <quic_songchai@...cinc.com>
---
scripts/coccicheck | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/scripts/coccicheck b/scripts/coccicheck
index 0e6bc5a10320..18a69edcea66 100755
--- a/scripts/coccicheck
+++ b/scripts/coccicheck
@@ -270,7 +270,9 @@ fi
if [ "$COCCI" = "" ] ; then
for f in `find $srctree/scripts/coccinelle/ -name '*.cocci' -type f | sort`; do
- coccinelle $f
+ if grep -q "virtual[[:space:]]\+$MODE" "$f"; then
+ coccinelle $f
+ fi
done
else
coccinelle $COCCI
Powered by blists - more mailing lists