diff options
author | Michael S. Tsirkin <mst@mellanox.co.il> | 2006-03-21 01:25:41 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-21 01:25:41 -0500 |
commit | c5ecd62c25400a3c6856e009f84257d5bd03f03b (patch) | |
tree | a0aeb88552772396bba986cce176028348ec041f /net/core | |
parent | 53dcb0e38c1786aa82ada4641b4607be315b610a (diff) |
[NET]: Move destructor from neigh->ops to neigh_params
struct neigh_ops currently has a destructor field, which no in-kernel
drivers outside of infiniband use. The infiniband/ulp/ipoib in-tree
driver stashes some info in the neighbour structure (the results of
the second-stage lookup from ARP results to real link-level path), and
it uses neigh->ops->destructor to get a callback so it can clean up
this extra info when a neighbour is freed. We've run into problems
with this: since the destructor is in an ops field that is shared
between neighbours that may belong to different net devices, there's
no way to set/clear it safely.
The following patch moves this field to neigh_parms where it can be
safely set, together with its twin neigh_setup. Two additional
patches in the patch series update ipoib to use this new interface.
Signed-off-by: Michael S. Tsirkin <mst@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/neighbour.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index 6ba1cdea18e8..0c8666872d10 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c | |||
@@ -586,8 +586,8 @@ void neigh_destroy(struct neighbour *neigh) | |||
586 | kfree(hh); | 586 | kfree(hh); |
587 | } | 587 | } |
588 | 588 | ||
589 | if (neigh->ops && neigh->ops->destructor) | 589 | if (neigh->parms->neigh_destructor) |
590 | (neigh->ops->destructor)(neigh); | 590 | (neigh->parms->neigh_destructor)(neigh); |
591 | 591 | ||
592 | skb_queue_purge(&neigh->arp_queue); | 592 | skb_queue_purge(&neigh->arp_queue); |
593 | 593 | ||