All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fpga: dfl: fme: Constify static attribute_group structs
@ 2021-01-08 23:54 Rikard Falkeborn
  2021-01-09 21:55 ` Tom Rix
  0 siblings, 1 reply; 5+ messages in thread
From: Rikard Falkeborn @ 2021-01-08 23:54 UTC (permalink / raw)
  To: Wu Hao, Tom Rix, Moritz Fischer
  Cc: linux-fpga, linux-kernel, Rikard Falkeborn

The only usage of these is to put their addresses in arrays of pointers
to const attribute_groups. Make them const to allow the compiler to put
them in read-only memory.

Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
---
 drivers/fpga/dfl-fme-perf.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/fpga/dfl-fme-perf.c b/drivers/fpga/dfl-fme-perf.c
index 531266287eee..4299145ef347 100644
--- a/drivers/fpga/dfl-fme-perf.c
+++ b/drivers/fpga/dfl-fme-perf.c
@@ -192,7 +192,7 @@ static struct attribute *fme_perf_cpumask_attrs[] = {
 	NULL,
 };
 
-static struct attribute_group fme_perf_cpumask_group = {
+static const struct attribute_group fme_perf_cpumask_group = {
 	.attrs = fme_perf_cpumask_attrs,
 };
 
@@ -225,7 +225,7 @@ static struct attribute *fme_perf_format_attrs[] = {
 	NULL,
 };
 
-static struct attribute_group fme_perf_format_group = {
+static const struct attribute_group fme_perf_format_group = {
 	.name = "format",
 	.attrs = fme_perf_format_attrs,
 };
@@ -239,7 +239,7 @@ static struct attribute *fme_perf_events_attrs_empty[] = {
 	NULL,
 };
 
-static struct attribute_group fme_perf_events_group = {
+static const struct attribute_group fme_perf_events_group = {
 	.name = "events",
 	.attrs = fme_perf_events_attrs_empty,
 };
-- 
2.30.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] fpga: dfl: fme: Constify static attribute_group structs
  2021-01-08 23:54 [PATCH] fpga: dfl: fme: Constify static attribute_group structs Rikard Falkeborn
@ 2021-01-09 21:55 ` Tom Rix
  2021-01-09 22:52   ` Rikard Falkeborn
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Rix @ 2021-01-09 21:55 UTC (permalink / raw)
  To: Rikard Falkeborn, Wu Hao, Moritz Fischer; +Cc: linux-fpga, linux-kernel


On 1/8/21 3:54 PM, Rikard Falkeborn wrote:
> The only usage of these is to put their addresses in arrays of pointers
> to const attribute_groups. Make them const to allow the compiler to put
> them in read-only memory.
>
> Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
> ---
>  drivers/fpga/dfl-fme-perf.c | 6 +++---

This looks ok.

There are other 'static struct's in drivers/fpga.

Why is the change limited to this file ?

Tom

>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/fpga/dfl-fme-perf.c b/drivers/fpga/dfl-fme-perf.c
> index 531266287eee..4299145ef347 100644
> --- a/drivers/fpga/dfl-fme-perf.c
> +++ b/drivers/fpga/dfl-fme-perf.c
> @@ -192,7 +192,7 @@ static struct attribute *fme_perf_cpumask_attrs[] = {
>  	NULL,
>  };
>  
> -static struct attribute_group fme_perf_cpumask_group = {
> +static const struct attribute_group fme_perf_cpumask_group = {
>  	.attrs = fme_perf_cpumask_attrs,
>  };
>  
> @@ -225,7 +225,7 @@ static struct attribute *fme_perf_format_attrs[] = {
>  	NULL,
>  };
>  
> -static struct attribute_group fme_perf_format_group = {
> +static const struct attribute_group fme_perf_format_group = {
>  	.name = "format",
>  	.attrs = fme_perf_format_attrs,
>  };
> @@ -239,7 +239,7 @@ static struct attribute *fme_perf_events_attrs_empty[] = {
>  	NULL,
>  };
>  
> -static struct attribute_group fme_perf_events_group = {
> +static const struct attribute_group fme_perf_events_group = {
>  	.name = "events",
>  	.attrs = fme_perf_events_attrs_empty,
>  };


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] fpga: dfl: fme: Constify static attribute_group structs
  2021-01-09 21:55 ` Tom Rix
@ 2021-01-09 22:52   ` Rikard Falkeborn
  2021-01-10  1:40     ` Tom Rix
  0 siblings, 1 reply; 5+ messages in thread
From: Rikard Falkeborn @ 2021-01-09 22:52 UTC (permalink / raw)
  To: Tom Rix
  Cc: Rikard Falkeborn, Wu Hao, Moritz Fischer, linux-fpga, linux-kernel

On Sat, Jan 09, 2021 at 01:55:13PM -0800, Tom Rix wrote:
> 
> On 1/8/21 3:54 PM, Rikard Falkeborn wrote:
> > The only usage of these is to put their addresses in arrays of pointers
> > to const attribute_groups. Make them const to allow the compiler to put
> > them in read-only memory.
> >
> > Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
> > ---
> >  drivers/fpga/dfl-fme-perf.c | 6 +++---
> 
> This looks ok.
> 
> There are other 'static struct's in drivers/fpga.
> 
> Why is the change limited to this file ?
> 
> Tom
> 

I have a WIP coccinelle script to constify static struct attribute_group
and this is the only file in drivers/fpga which has non-const struct
attribute_group, that's why it's limited to this file. I could have
mentioned that in the commit message.

Rikard


> >  1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/fpga/dfl-fme-perf.c b/drivers/fpga/dfl-fme-perf.c
> > index 531266287eee..4299145ef347 100644
> > --- a/drivers/fpga/dfl-fme-perf.c
> > +++ b/drivers/fpga/dfl-fme-perf.c
> > @@ -192,7 +192,7 @@ static struct attribute *fme_perf_cpumask_attrs[] = {
> >  	NULL,
> >  };
> >  
> > -static struct attribute_group fme_perf_cpumask_group = {
> > +static const struct attribute_group fme_perf_cpumask_group = {
> >  	.attrs = fme_perf_cpumask_attrs,
> >  };
> >  
> > @@ -225,7 +225,7 @@ static struct attribute *fme_perf_format_attrs[] = {
> >  	NULL,
> >  };
> >  
> > -static struct attribute_group fme_perf_format_group = {
> > +static const struct attribute_group fme_perf_format_group = {
> >  	.name = "format",
> >  	.attrs = fme_perf_format_attrs,
> >  };
> > @@ -239,7 +239,7 @@ static struct attribute *fme_perf_events_attrs_empty[] = {
> >  	NULL,
> >  };
> >  
> > -static struct attribute_group fme_perf_events_group = {
> > +static const struct attribute_group fme_perf_events_group = {
> >  	.name = "events",
> >  	.attrs = fme_perf_events_attrs_empty,
> >  };
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] fpga: dfl: fme: Constify static attribute_group structs
  2021-01-09 22:52   ` Rikard Falkeborn
@ 2021-01-10  1:40     ` Tom Rix
  2021-01-10 19:06       ` Moritz Fischer
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Rix @ 2021-01-10  1:40 UTC (permalink / raw)
  To: Rikard Falkeborn; +Cc: Wu Hao, Moritz Fischer, linux-fpga, linux-kernel


On 1/9/21 2:52 PM, Rikard Falkeborn wrote:
> On Sat, Jan 09, 2021 at 01:55:13PM -0800, Tom Rix wrote:
>> On 1/8/21 3:54 PM, Rikard Falkeborn wrote:
>>> The only usage of these is to put their addresses in arrays of pointers
>>> to const attribute_groups. Make them const to allow the compiler to put
>>> them in read-only memory.
>>>
>>> Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
>>> ---
>>>  drivers/fpga/dfl-fme-perf.c | 6 +++---
>> This looks ok.
>>
>> There are other 'static struct's in drivers/fpga.
>>
>> Why is the change limited to this file ?
>>
>> Tom
>>
> I have a WIP coccinelle script to constify static struct attribute_group
> and this is the only file in drivers/fpga which has non-const struct
> attribute_group, that's why it's limited to this file. I could have
> mentioned that in the commit message.

No worries, thanks for the change!

Reviewed-by: Tom Rix <trix@redhat.com>

> Rikard
>
>
>>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/drivers/fpga/dfl-fme-perf.c b/drivers/fpga/dfl-fme-perf.c
>>> index 531266287eee..4299145ef347 100644
>>> --- a/drivers/fpga/dfl-fme-perf.c
>>> +++ b/drivers/fpga/dfl-fme-perf.c
>>> @@ -192,7 +192,7 @@ static struct attribute *fme_perf_cpumask_attrs[] = {
>>>  	NULL,
>>>  };
>>>  
>>> -static struct attribute_group fme_perf_cpumask_group = {
>>> +static const struct attribute_group fme_perf_cpumask_group = {
>>>  	.attrs = fme_perf_cpumask_attrs,
>>>  };
>>>  
>>> @@ -225,7 +225,7 @@ static struct attribute *fme_perf_format_attrs[] = {
>>>  	NULL,
>>>  };
>>>  
>>> -static struct attribute_group fme_perf_format_group = {
>>> +static const struct attribute_group fme_perf_format_group = {
>>>  	.name = "format",
>>>  	.attrs = fme_perf_format_attrs,
>>>  };
>>> @@ -239,7 +239,7 @@ static struct attribute *fme_perf_events_attrs_empty[] = {
>>>  	NULL,
>>>  };
>>>  
>>> -static struct attribute_group fme_perf_events_group = {
>>> +static const struct attribute_group fme_perf_events_group = {
>>>  	.name = "events",
>>>  	.attrs = fme_perf_events_attrs_empty,
>>>  };


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] fpga: dfl: fme: Constify static attribute_group structs
  2021-01-10  1:40     ` Tom Rix
@ 2021-01-10 19:06       ` Moritz Fischer
  0 siblings, 0 replies; 5+ messages in thread
From: Moritz Fischer @ 2021-01-10 19:06 UTC (permalink / raw)
  To: Tom Rix
  Cc: Rikard Falkeborn, Wu Hao, Moritz Fischer, linux-fpga, linux-kernel

On Sat, Jan 09, 2021 at 05:40:38PM -0800, Tom Rix wrote:
> 
> On 1/9/21 2:52 PM, Rikard Falkeborn wrote:
> > On Sat, Jan 09, 2021 at 01:55:13PM -0800, Tom Rix wrote:
> >> On 1/8/21 3:54 PM, Rikard Falkeborn wrote:
> >>> The only usage of these is to put their addresses in arrays of pointers
> >>> to const attribute_groups. Make them const to allow the compiler to put
> >>> them in read-only memory.
> >>>
> >>> Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
> >>> ---
> >>>  drivers/fpga/dfl-fme-perf.c | 6 +++---
> >> This looks ok.
> >>
> >> There are other 'static struct's in drivers/fpga.
> >>
> >> Why is the change limited to this file ?
> >>
> >> Tom
> >>
> > I have a WIP coccinelle script to constify static struct attribute_group
> > and this is the only file in drivers/fpga which has non-const struct
> > attribute_group, that's why it's limited to this file. I could have
> > mentioned that in the commit message.
> 
> No worries, thanks for the change!
> 
> Reviewed-by: Tom Rix <trix@redhat.com>
> 
> > Rikard
> >
> >
> >>>  1 file changed, 3 insertions(+), 3 deletions(-)
> >>>
> >>> diff --git a/drivers/fpga/dfl-fme-perf.c b/drivers/fpga/dfl-fme-perf.c
> >>> index 531266287eee..4299145ef347 100644
> >>> --- a/drivers/fpga/dfl-fme-perf.c
> >>> +++ b/drivers/fpga/dfl-fme-perf.c
> >>> @@ -192,7 +192,7 @@ static struct attribute *fme_perf_cpumask_attrs[] = {
> >>>  	NULL,
> >>>  };
> >>>  
> >>> -static struct attribute_group fme_perf_cpumask_group = {
> >>> +static const struct attribute_group fme_perf_cpumask_group = {
> >>>  	.attrs = fme_perf_cpumask_attrs,
> >>>  };
> >>>  
> >>> @@ -225,7 +225,7 @@ static struct attribute *fme_perf_format_attrs[] = {
> >>>  	NULL,
> >>>  };
> >>>  
> >>> -static struct attribute_group fme_perf_format_group = {
> >>> +static const struct attribute_group fme_perf_format_group = {
> >>>  	.name = "format",
> >>>  	.attrs = fme_perf_format_attrs,
> >>>  };
> >>> @@ -239,7 +239,7 @@ static struct attribute *fme_perf_events_attrs_empty[] = {
> >>>  	NULL,
> >>>  };
> >>>  
> >>> -static struct attribute_group fme_perf_events_group = {
> >>> +static const struct attribute_group fme_perf_events_group = {
> >>>  	.name = "events",
> >>>  	.attrs = fme_perf_events_attrs_empty,
> >>>  };
> 
Applied,

Thanks

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-01-10 19:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-08 23:54 [PATCH] fpga: dfl: fme: Constify static attribute_group structs Rikard Falkeborn
2021-01-09 21:55 ` Tom Rix
2021-01-09 22:52   ` Rikard Falkeborn
2021-01-10  1:40     ` Tom Rix
2021-01-10 19:06       ` Moritz Fischer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.