diff options
author | Steve Wise <swise@opengridcomputing.com> | 2007-01-23 19:03:17 -0600 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2007-02-04 14:11:57 -0800 |
commit | 1f12667021c542236b1f10eb5d8b2d8f3a79ab48 (patch) | |
tree | 62b2feb950c57011757cf5e5357ac17528bc1147 /drivers | |
parent | fa7252ed4d92397baf30e4a144af95a33eaa925b (diff) | |
download | linux-3.10-1f12667021c542236b1f10eb5d8b2d8f3a79ab48.tar.gz linux-3.10-1f12667021c542236b1f10eb5d8b2d8f3a79ab48.tar.bz2 linux-3.10-1f12667021c542236b1f10eb5d8b2d8f3a79ab48.zip |
RDMA/addr: Handle ethernet neighbour updates during route resolution
The iWARP connection manager uses the ib_addr services to do route
resolution (neighbour discovery in the IP world). The ib_addr
netevent callback routine, however, currently only acts on InfiniBand
neighbour updates. It needs to act on ethernet neighbour updates as
well.
This patch just removes filtering on device type altogether and will
trigger on any neighour updates where the nud_type is valid. This
simplifies the code some.
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/infiniband/core/addr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/core/addr.c b/drivers/infiniband/core/addr.c index af939796750..d2bb5a9a303 100644 --- a/drivers/infiniband/core/addr.c +++ b/drivers/infiniband/core/addr.c @@ -360,8 +360,7 @@ static int netevent_callback(struct notifier_block *self, unsigned long event, if (event == NETEVENT_NEIGH_UPDATE) { struct neighbour *neigh = ctx; - if (neigh->dev->type == ARPHRD_INFINIBAND && - (neigh->nud_state & NUD_VALID)) { + if (neigh->nud_state & NUD_VALID) { set_timeout(jiffies); } } |