* [PATCH v6] coccinelle: misc: Add field_modify script
@ 2025-06-26 6:02 Luo Jie
2025-06-26 7:43 ` Markus Elfring
0 siblings, 1 reply; 3+ messages in thread
From: Luo Jie @ 2025-06-26 6:02 UTC (permalink / raw)
To: Yury Norov, Rasmus Villemoes, Julia Lawall, Nicolas Palix,
Catalin Marinas, Will Deacon, Marc Zyngier, Oliver Upton,
Joey Gouly, Suzuki K Poulose, Zenghui Yu
Cc: linux-kernel, cocci, linux-arm-kernel, kvmarm, andrew,
quic_kkumarcs, quic_linchen, quic_leiwei, quic_suruchia,
quic_pavir, Markus.Elfring, Luo Jie
Find and suggest conversions of opencoded field modify patterns with
the wrapper FIELD_MODIFY() API defined in include/linux/bitfield.h
for catching the possible parameter type error in the compile time.
Signed-off-by: Luo Jie <quic_luoj@quicinc.com>
---
Add the helper FIELD_MODIFY() to the FIELD_XXX family of bitfield
macros. It is functionally similar as xxx_replace_bits(), but adds
the compile time checking to catch incorrect parameter type errors.
This series also converts the four instances of opencoded FIELD_MODIFY()
that are found in the core kernel files, to instead use the new
FIELD_MODIFY() macro. This is achieved with Coccinelle, by adding
the script field_modify.cocci.
The changes are validated on IPQ9574 SoC which uses ARM64 architecture.
---
Changes in v6:
- Adopt the suggested code variant for the org mode.
- Link to v5: https://lore.kernel.org/r/20250624-field_modify-v5-1-cd67127030e4@quicinc.com
Changes in v5:
- Remove ARM64 patches based on the discussion in v3 and v4 versions of
this series.
- Simplify the condition selections in coccinelle script.
- Link to v4: https://lore.kernel.org/r/20250612-field_modify-v4-0-ae4f74da45a6@quicinc.com
Changes in v4:
- Add org, report and context mode for coccinelle script.
- Fix other comments on coccinelle script patch.
- Remove the FIELD_MODIFY patch as it is merged.
- Link to v3: https://lore.kernel.org/r/20250417-field_modify-v3-0-6f7992aafcb7@quicinc.com
Changes in v3:
- Correct the order of header files included.
- Add the Coccinelle script field_modify.cocci..
- Convert the opencoded FIELD_MODIFY() variants inside arm64 directory,
identified by field_modify.cocci.
- Link to v2: https://lore.kernel.org/all/20250410131048.2054791-1-quic_luoj@quicinc.com/
Changes in v2:
- Update the documented example for FIELD_MODIFY().
- Improve the commit message to describe the need for the change.
- Link to v1: https://lore.kernel.org/all/20250318071526.1836194-1-quic_luoj@quicinc.com/
---
scripts/coccinelle/misc/field_modify.cocci | 59 ++++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
diff --git a/scripts/coccinelle/misc/field_modify.cocci b/scripts/coccinelle/misc/field_modify.cocci
new file mode 100644
index 000000000000..bdc5a65a1b53
--- /dev/null
+++ b/scripts/coccinelle/misc/field_modify.cocci
@@ -0,0 +1,59 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/// Replace below code with the wrapper FIELD_MODIFY(MASK, ®, val)
+/// - reg &= ~MASK;
+/// - reg |= FIELD_PREP(MASK, val);
+//
+// Confidence: High
+// Author: Luo Jie <quic_luoj@quicinc.com>
+// Copyright: (C) 2025 Qualcomm Innovation Center, Inc.
+// Keywords: FIELD_PREP, FIELD_MODIFY
+// Options: --include-headers
+
+virtual context
+virtual patch
+virtual org
+virtual report
+
+@depends on context@
+identifier reg, val;
+constant mask;
+symbol FIELD_PREP;
+@@
+
+*reg &= ~mask;
+*reg |= FIELD_PREP(mask, val);
+
+@depends on patch@
+identifier reg, val;
+constant mask;
+symbol FIELD_PREP, FIELD_MODIFY;
+@@
+
+-reg &= ~mask;
+-reg |= FIELD_PREP(mask, val);
++FIELD_MODIFY(mask, ®, val);
+
+@r depends on org || report@
+identifier reg, val;
+constant mask;
+symbol FIELD_PREP;
+position p;
+@@
+
+reg &= ~mask;
+reg |= FIELD_PREP@p(mask, val);
+
+@script:python depends on report@
+p << r.p;
+x << r.reg;
+@@
+
+coccilib.report.print_report(p[0], "WARNING: Consider using FIELD_MODIFY helper on %s" % (x))
+
+@script:python depends on org@
+p << r.p;
+x << r.reg;
+@@
+
+msg = f"WARNING: Consider using FIELD_MODIFY helper on {x}"
+coccilib.org.print_todo(p[0], msg.replace("[","@(").replace("]",")"))
---
base-commit: 0bb71d301869446810a0b13d3da290bd455d7c78
change-id: 20250612-field_modify-27139f673881
Best regards,
--
Luo Jie <quic_luoj@quicinc.com>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v6] coccinelle: misc: Add field_modify script
2025-06-26 6:02 [PATCH v6] coccinelle: misc: Add field_modify script Luo Jie
@ 2025-06-26 7:43 ` Markus Elfring
2025-06-27 4:33 ` Luo Jie
0 siblings, 1 reply; 3+ messages in thread
From: Markus Elfring @ 2025-06-26 7:43 UTC (permalink / raw)
To: Luo Jie, cocci, Catalin Marinas, Joey Gouly, Julia Lawall,
Marc Zyngier, Nicolas Palix, Oliver Upton, Rasmus Villemoes,
Suzuki Poulose, Will Deacon, Yury Norov, Zenghui Yu
Cc: LKML, linux-arm-kernel, kvmarm, Andrew Lunn, Kiran Kumar C.S.K,
Lei Wei, Pavithra R, Suruchi Agarwal, quic_linchen
> +coccilib.report.print_report(p[0], "WARNING: Consider using FIELD_MODIFY helper on %s" % (x))
Would you find it a bit nicer to use also another formatted string literal
as a function call parameter?
(The recent code adjustment indicated something for the operation mode “org”.)
https://docs.python.org/3/reference/lexical_analysis.html#f-strings
Regards,
Markus
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v6] coccinelle: misc: Add field_modify script
2025-06-26 7:43 ` Markus Elfring
@ 2025-06-27 4:33 ` Luo Jie
0 siblings, 0 replies; 3+ messages in thread
From: Luo Jie @ 2025-06-27 4:33 UTC (permalink / raw)
To: Markus Elfring, cocci, Catalin Marinas, Joey Gouly, Julia Lawall,
Marc Zyngier, Nicolas Palix, Oliver Upton, Rasmus Villemoes,
Suzuki Poulose, Will Deacon, Yury Norov, Zenghui Yu
Cc: LKML, linux-arm-kernel, kvmarm, Andrew Lunn, Kiran Kumar C.S.K,
Lei Wei, Pavithra R, Suruchi Agarwal, quic_linchen
On 6/26/2025 3:43 PM, Markus Elfring wrote:
>> +coccilib.report.print_report(p[0], "WARNING: Consider using FIELD_MODIFY helper on %s" % (x))
>
> Would you find it a bit nicer to use also another formatted string literal
> as a function call parameter?
> (The recent code adjustment indicated something for the operation mode “org”.)
> https://docs.python.org/3/reference/lexical_analysis.html#f-strings
>
> Regards,
> Markus
Sure, I agree that using a formatted string literal as a function call
parameter will make the code cleaner. I will update the function call
as shown below in the next revision.
coccilib.report.print_report(p[0], f"WARNING: Consider using
FIELD_MODIFY helper on {x}")
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-27 4:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-26 6:02 [PATCH v6] coccinelle: misc: Add field_modify script Luo Jie
2025-06-26 7:43 ` Markus Elfring
2025-06-27 4:33 ` Luo Jie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).