2024-01-22 03:28:26

by Li Zhijian

[permalink] [raw]
Subject: [PATCH] coccinelle: device_attr_show: Remove useless expression STR

Commit ff82e84e80fc ("coccinelle: device_attr_show: simplify patch case")
simplifies the patch case, as a result, STR is no longer needed.

CC: Julia Lawall <[email protected]>
CC: Nicolas Palix <[email protected]>
CC: [email protected]
Signed-off-by: Li Zhijian <[email protected]>
---
scripts/coccinelle/api/device_attr_show.cocci | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/coccinelle/api/device_attr_show.cocci b/scripts/coccinelle/api/device_attr_show.cocci
index 550d1d2fc02a..dfcf9304195f 100644
--- a/scripts/coccinelle/api/device_attr_show.cocci
+++ b/scripts/coccinelle/api/device_attr_show.cocci
@@ -28,7 +28,7 @@ ssize_t show(struct device *dev, struct device_attribute *attr, char *buf)

@rp depends on patch@
identifier show, dev, attr, buf;
-expression BUF, SZ, FORMAT, STR;
+expression BUF, SZ, FORMAT;
@@

ssize_t show(struct device *dev, struct device_attribute *attr, char *buf)
--
2.29.2



2024-01-22 06:33:54

by Julia Lawall

[permalink] [raw]
Subject: Re: [PATCH] coccinelle: device_attr_show: Remove useless expression STR



On Mon, 22 Jan 2024, Li Zhijian wrote:

> Commit ff82e84e80fc ("coccinelle: device_attr_show: simplify patch case")
> simplifies the patch case, as a result, STR is no longer needed.

Oops, yeah...

thanks,
julia

>
> CC: Julia Lawall <[email protected]>
> CC: Nicolas Palix <[email protected]>
> CC: [email protected]
> Signed-off-by: Li Zhijian <[email protected]>
> ---
> scripts/coccinelle/api/device_attr_show.cocci | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/coccinelle/api/device_attr_show.cocci b/scripts/coccinelle/api/device_attr_show.cocci
> index 550d1d2fc02a..dfcf9304195f 100644
> --- a/scripts/coccinelle/api/device_attr_show.cocci
> +++ b/scripts/coccinelle/api/device_attr_show.cocci
> @@ -28,7 +28,7 @@ ssize_t show(struct device *dev, struct device_attribute *attr, char *buf)
>
> @rp depends on patch@
> identifier show, dev, attr, buf;
> -expression BUF, SZ, FORMAT, STR;
> +expression BUF, SZ, FORMAT;
> @@
>
> ssize_t show(struct device *dev, struct device_attribute *attr, char *buf)
> --
> 2.29.2
>
>

2024-02-18 01:54:31

by Li Zhijian

[permalink] [raw]
Subject: Re: [PATCH] coccinelle: device_attr_show: Remove useless expression STR

Julia,

I would like to gently remind that we should consider applying this patch to v6.8
because it also helps to fix the newly introduced coccicheck warning in v6.8-rc1

> /usr/bin/spatch -D patch --very-quiet --cocci-file scripts/coccinelle/api/device_attr_show.cocci --no-includes --include-headers --patch . --dir arch/x86/events/intel -I ./arch/x86/include -I ./arch/x86/include/generated -I ./inclu
de -I ./arch/x86/include/uapi -I ./arch/x86/include/generated/uapi -I ./include/uapi -I ./include/generated/uapi --include ./include/linux/compiler-version.h --include ./include/linux/kconfig.h --jobs 4 --chunksize 1
warning: rp: metavariable STR not used in the - or context code <<< new warning
6 files match

Thanks
Zhijian


On 22/01/2024 14:33, Julia Lawall wrote:
>
>
> On Mon, 22 Jan 2024, Li Zhijian wrote:
>
>> Commit ff82e84e80fc ("coccinelle: device_attr_show: simplify patch case")
>> simplifies the patch case, as a result, STR is no longer needed.
>
> Oops, yeah...
>
> thanks,
> julia
>
>>
>> CC: Julia Lawall <[email protected]>
>> CC: Nicolas Palix <[email protected]>
>> CC: [email protected]
>> Signed-off-by: Li Zhijian <[email protected]>
>> ---
>> scripts/coccinelle/api/device_attr_show.cocci | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/scripts/coccinelle/api/device_attr_show.cocci b/scripts/coccinelle/api/device_attr_show.cocci
>> index 550d1d2fc02a..dfcf9304195f 100644
>> --- a/scripts/coccinelle/api/device_attr_show.cocci
>> +++ b/scripts/coccinelle/api/device_attr_show.cocci
>> @@ -28,7 +28,7 @@ ssize_t show(struct device *dev, struct device_attribute *attr, char *buf)
>>
>> @rp depends on patch@
>> identifier show, dev, attr, buf;
>> -expression BUF, SZ, FORMAT, STR;
>> +expression BUF, SZ, FORMAT;
>> @@
>>
>> ssize_t show(struct device *dev, struct device_attribute *attr, char *buf)
>> --
>> 2.29.2
>>
>>