Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1479648
| From | Guenter Roeck <linux@roeck-us.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 2/2] watchdog: constify watchdog_ops structures |
| Date | 2016-09-09 06:30 +0200 |
| Message-ID | <sflBU-6IG-23@gated-at.bofh.it> (permalink) |
| References | <scHyW-75a-3@gated-at.bofh.it> <scHyX-75a-61@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 09/01/2016 10:35 AM, Julia Lawall wrote:
> Check for watchdog_ops structures that are only stored in the ops field of
> a watchdog_device structure. This field is declared const, so watchdog_ops
> structures that have this property can be declared as const also.
>
> The semantic patch that makes this change is as follows:
> (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @r disable optional_qualifier@
> identifier i;
> position p;
> @@
> static struct watchdog_ops i@p = { ... };
>
> @ok@
> identifier r.i;
> struct watchdog_device e;
> position p;
> @@
> e.ops = &i@p;
>
> @bad@
> position p != {r.p,ok.p};
> identifier r.i;
> struct watchdog_ops e;
> @@
> e@i@p
>
> @depends on !bad disable optional_qualifier@
> identifier r.i;
> @@
> static
> +const
> struct watchdog_ops i = { ... };
> // </smpl>
>
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH 0/2] constify watchdog_ops structures Julia Lawall <Julia.Lawall@lip6.fr> - 2016-09-01 23:20 +0200
[PATCH 1/2] watchdog: tegra: constify watchdog_ops structures Julia Lawall <Julia.Lawall@lip6.fr> - 2016-09-01 23:20 +0200
Re: [PATCH 1/2] watchdog: tegra: constify watchdog_ops structures Thierry Reding <thierry.reding@gmail.com> - 2016-09-06 11:20 +0200
Re: [PATCH 1/2] watchdog: tegra: constify watchdog_ops structures Guenter Roeck <linux@roeck-us.net> - 2016-09-09 06:30 +0200
[PATCH 2/2] watchdog: constify watchdog_ops structures Julia Lawall <Julia.Lawall@lip6.fr> - 2016-09-01 23:20 +0200
Re: [PATCH 2/2] watchdog: constify watchdog_ops structures Guenter Roeck <linux@roeck-us.net> - 2016-09-09 06:30 +0200
csiph-web