git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ba3eb0
)
net: use net_eq to compare nets
author
Octavian Purdila
<opurdila@ixiacom.com>
Wed, 25 Nov 2009 23:14:13 +0000
(15:14 -0800)
committer
David S. Miller
<davem@davemloft.net>
Wed, 25 Nov 2009 23:14:13 +0000
(15:14 -0800)
Generated with the following semantic patch
@@
struct net *n1;
struct net *n2;
@@
- n1 == n2
+ net_eq(n1, n2)
@@
struct net *n1;
struct net *n2;
@@
- n1 != n2
+ !net_eq(n1, n2)
applied over {include,net,drivers/net}.
Signed-off-by: Octavian Purdila <opurdila@ixiacom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
No differences found