From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Wed, 24 Jan 2024 18:38:39 +0100 A wrapper macro is available since the commit 8eb8284b412906181357c2b0110d879d5af95e52 ("usercopy: Prepare for usercopy whitelisting"). Provide design options for the adjustment of affected source code by the means of the semantic patch language (Coccinelle software). Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> --- scripts/coccinelle/api/use_KMEM_CACHE.cocci | 48 +++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 scripts/coccinelle/api/use_KMEM_CACHE.cocci diff --git a/scripts/coccinelle/api/use_KMEM_CACHE.cocci b/scripts/coccinelle/api/use_KMEM_CACHE.cocci new file mode 100644 index 000000000000..259a8c998bb1 --- /dev/null +++ b/scripts/coccinelle/api/use_KMEM_CACHE.cocci @@ -0,0 +1,48 @@ +// SPDX-License-Identifier: GPL-2.0 +/// Simplify a function call by using a known wrapper macro. +// +// Keywords: wrapper macro conversion cache creation +// Confidence: High +// Options: --no-includes --include-headers + +virtual context, patch, report, org + +@depends on context disable sizeof_type_expr@ +constant char[] text; +expression alignment, flags; +identifier name; +@@ +*kmem_cache_create(text, sizeof(struct name), alignment, flags, NULL) + +@depends on patch disable sizeof_type_expr@ +constant char[] text; +expression alignment, flags; +identifier name; +@@ +-kmem_cache_create ++KMEM_CACHE + ( +-text, sizeof(struct + name +-), alignment + , flags +-, NULL + ) + +@x depends on org || report disable sizeof_type_expr@ +constant char[] text; +expression alignment, flags; +identifier name; +position p; +@@ + kmem_cache_create@p(text, sizeof(struct name), alignment, flags, NULL) + +@script:python depends on org@ +p << x.p; +@@ +coccilib.org.print_todo(p[0], "WARNING: opportunity for KMEM_CACHE()") + +@script:python depends on report@ +p << x.p; +@@ +coccilib.report.print_report(p[0], "WARNING: opportunity for KMEM_CACHE()") -- 2.43.0