diff options
| author | Roland Dreier <rdreier@cisco.com> | 2006-03-07 14:21:08 -0500 |
|---|---|---|
| committer | Roland Dreier <rolandd@cisco.com> | 2006-03-20 13:08:24 -0500 |
| commit | 8b9ab02b690e988f19c9d740ef642d7d833d23d5 (patch) | |
| tree | e72a12094911f4c0c4fe5ed7769be047763bc103 | |
| parent | 702b2aaccfbf0fa29c6ffb423a39a7a5573f793a (diff) | |
IPoIB: Fix build now that neighbour destructor is in neigh_params
Fix the IPoIB build (which is broken in net-2.6.17 because of my
screw-up, which left out this chunk in ipoib_multicast.c).
The neighbour destructor is now in neigh_params, so we don't
need to clear it in the ops structure.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
| -rw-r--r-- | drivers/infiniband/ulp/ipoib/ipoib_multicast.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_multicast.c b/drivers/infiniband/ulp/ipoib/ipoib_multicast.c index fde442a1996d..93c462eaf4fd 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_multicast.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_multicast.c | |||
| @@ -115,7 +115,6 @@ static void ipoib_mcast_free(struct ipoib_mcast *mcast) | |||
| 115 | if (neigh->ah) | 115 | if (neigh->ah) |
| 116 | ipoib_put_ah(neigh->ah); | 116 | ipoib_put_ah(neigh->ah); |
| 117 | *to_ipoib_neigh(neigh->neighbour) = NULL; | 117 | *to_ipoib_neigh(neigh->neighbour) = NULL; |
| 118 | neigh->neighbour->ops->destructor = NULL; | ||
| 119 | kfree(neigh); | 118 | kfree(neigh); |
| 120 | } | 119 | } |
| 121 | 120 | ||
