Re: [PATCH 3/4] ip_tunnel: delete unneeded call to netdev_priv

2014-05-15 Thread David Miller
From: Julia Lawall Date: Thu, 15 May 2014 05:43:20 +0200 > From: Julia Lawall > > Netdev_priv is an accessor function, and has no purpose if its result is > not used. > > A simplified version of the semantic match that fixes this problem is as > follows: (http://coccinelle.lip6.fr/) > > // >

[PATCH 3/4] ip_tunnel: delete unneeded call to netdev_priv

2014-05-14 Thread Julia Lawall
From: Julia Lawall Netdev_priv is an accessor function, and has no purpose if its result is not used. A simplified version of the semantic match that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // @@ local idexpression x; @@ -x = netdev_priv(...); ... when != x // Signed-o