diff options
author | Octavian Purdila <opurdila@ixiacom.com> | 2009-11-25 18:14:13 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-25 18:14:13 -0500 |
commit | 09ad9bc752519cc167d0a573e1acf69b5c707c67 (patch) | |
tree | 0e190a9ffb90d7e0534136c3e9f31dce02f423c3 /net/ipv4/devinet.c | |
parent | 4ba3eb034fb6fd1990ccc5a6d71d5abcda37b905 (diff) |
net: use net_eq to compare nets
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>
Diffstat (limited to 'net/ipv4/devinet.c')
-rw-r--r-- | net/ipv4/devinet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c index 7620382058a0..c100709d6ddf 100644 --- a/net/ipv4/devinet.c +++ b/net/ipv4/devinet.c | |||
@@ -1605,7 +1605,7 @@ static __net_init int devinet_init_net(struct net *net) | |||
1605 | all = &ipv4_devconf; | 1605 | all = &ipv4_devconf; |
1606 | dflt = &ipv4_devconf_dflt; | 1606 | dflt = &ipv4_devconf_dflt; |
1607 | 1607 | ||
1608 | if (net != &init_net) { | 1608 | if (!net_eq(net, &init_net)) { |
1609 | all = kmemdup(all, sizeof(ipv4_devconf), GFP_KERNEL); | 1609 | all = kmemdup(all, sizeof(ipv4_devconf), GFP_KERNEL); |
1610 | if (all == NULL) | 1610 | if (all == NULL) |
1611 | goto err_alloc_all; | 1611 | goto err_alloc_all; |