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/inet_hashtables.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/inet_hashtables.c')
-rw-r--r-- | net/ipv4/inet_hashtables.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c index 47ad7aab51e3..94ef51aa5bc9 100644 --- a/net/ipv4/inet_hashtables.c +++ b/net/ipv4/inet_hashtables.c | |||
@@ -454,7 +454,8 @@ int __inet_hash_connect(struct inet_timewait_death_row *death_row, | |||
454 | * unique enough. | 454 | * unique enough. |
455 | */ | 455 | */ |
456 | inet_bind_bucket_for_each(tb, node, &head->chain) { | 456 | inet_bind_bucket_for_each(tb, node, &head->chain) { |
457 | if (ib_net(tb) == net && tb->port == port) { | 457 | if (net_eq(ib_net(tb), net) && |
458 | tb->port == port) { | ||
458 | if (tb->fastreuse >= 0) | 459 | if (tb->fastreuse >= 0) |
459 | goto next_port; | 460 | goto next_port; |
460 | WARN_ON(hlist_empty(&tb->owners)); | 461 | WARN_ON(hlist_empty(&tb->owners)); |