All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mfd: max8925-i2c: Drop unnecessary static
@ 2018-10-20 18:07 Loic
  2018-11-05 23:46 ` Sasha Levin
  0 siblings, 1 reply; 2+ messages in thread
From: Loic @ 2018-10-20 18:07 UTC (permalink / raw)
  To: stable; +Cc: Julia.Lawall, keescook, lee.jones

Hello,

Please picked up this patch for linux 4.4 and 4.9.
Compiled/tested without problem.

[ Upstream commit 0953075112d7626474b0bb88690f5f1ab93ec803 ]

From: Julia Lawall <Julia.Lawall@lip6.fr>
Date: Thu, 4 May 2017 22:10:54 +0200
Subject: [PATCH] mfd: max8925-i2c: Drop unnecessary static

Drop static on a local variable, when the variable is initialized before
any use, on every possible execution path through the function.  The static
has no benefit, and dropping it reduces the code size.

The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@bad exists@
position p;
identifier x;
type T;
@@

static T x@p;
...
x = <+...x...+>

@@
identifier x;
expression e;
type T;
position p != bad.p;
@@

-static
 T x@p;
 ... when != x
     when strict
?x = e;
// </smpl>

The change in code size is indicates by the following output from the size
command.

before:
   text    data     bss     dec     hex filename
   2579     240      16    2835     b13 drivers/mfd/max8925-i2c.o

after:
   text    data     bss     dec     hex filename
   2531     240       8    2779     adb drivers/mfd/max8925-i2c.o

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
---
 drivers/mfd/max8925-i2c.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mfd/max8925-i2c.c b/drivers/mfd/max8925-i2c.c
index 5c80aea3211fd..10063236132c1 100644
--- a/drivers/mfd/max8925-i2c.c
+++ b/drivers/mfd/max8925-i2c.c
@@ -151,7 +151,7 @@ static int max8925_probe(struct i2c_client *client,
 				   const struct i2c_device_id *id)
 {
 	struct max8925_platform_data *pdata = dev_get_platdata(&client->dev);
-	static struct max8925_chip *chip;
+	struct max8925_chip *chip;
 	struct device_node *node = client->dev.of_node;
 
 	if (node && !pdata) {

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

* Re: [PATCH] mfd: max8925-i2c: Drop unnecessary static
  2018-10-20 18:07 [PATCH] mfd: max8925-i2c: Drop unnecessary static Loic
@ 2018-11-05 23:46 ` Sasha Levin
  0 siblings, 0 replies; 2+ messages in thread
From: Sasha Levin @ 2018-11-05 23:46 UTC (permalink / raw)
  To: Loic; +Cc: stable, Julia.Lawall, keescook, lee.jones

On Sat, Oct 20, 2018 at 08:07:41PM +0200, Loic wrote:
>Hello,
>
>Please picked up this patch for linux 4.4 and 4.9.
>Compiled/tested without problem.
>
>[ Upstream commit 0953075112d7626474b0bb88690f5f1ab93ec803 ]
>
>From: Julia Lawall <Julia.Lawall@lip6.fr>
>Date: Thu, 4 May 2017 22:10:54 +0200
>Subject: [PATCH] mfd: max8925-i2c: Drop unnecessary static
>
>Drop static on a local variable, when the variable is initialized before
>any use, on every possible execution path through the function.  The static
>has no benefit, and dropping it reduces the code size.
>
>The semantic patch that fixes this problem is as follows:
>(http://coccinelle.lip6.fr/)
>
>// <smpl>
>@bad exists@
>position p;
>identifier x;
>type T;
>@@
>
>static T x@p;
>...
>x = <+...x...+>
>
>@@
>identifier x;
>expression e;
>type T;
>position p != bad.p;
>@@
>
>-static
> T x@p;
> ... when != x
>     when strict
>?x = e;
>// </smpl>
>
>The change in code size is indicates by the following output from the size
>command.
>
>before:
>   text    data     bss     dec     hex filename
>   2579     240      16    2835     b13 drivers/mfd/max8925-i2c.o
>
>after:
>   text    data     bss     dec     hex filename
>   2531     240       8    2779     adb drivers/mfd/max8925-i2c.o
>
>Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
>Acked-by: Kees Cook <keescook@chromium.org>
>Signed-off-by: Lee Jones <lee.jones@linaro.org>

This doesn't really fix anything, not even a harmless warning, so I'd
rather leave it out.

--
Thanks,
Sasha

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

end of thread, other threads:[~2018-11-06  9:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-20 18:07 [PATCH] mfd: max8925-i2c: Drop unnecessary static Loic
2018-11-05 23:46 ` Sasha Levin

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.