summaryrefslogtreecommitdiffstats
path: root/include/net/netevent.h
diff options
context:
space:
mode:
authorYOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org>2013-01-14 04:28:27 -0500
committerDavid S. Miller <davem@davemloft.net>2013-01-14 15:04:59 -0500
commit605928337866c6369ae60509fa2b10af325a25eb (patch)
tree7b786dbdffded3418e38c88ffa5394c51b8aba38 /include/net/netevent.h
parenta66f566afc3a06f7588cd7a2c93125fce494162b (diff)
ipv6 netevent: Remove old_neigh from netevent_redirect.
The only user is cxgb3 driver. old_neigh is used to check device change, but it must not happen on redirect. In this sense, we can remove old_neigh argument. Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/netevent.h')
-rw-r--r--include/net/netevent.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/net/netevent.h b/include/net/netevent.h
index 3ce4988c9c08..fe630dde35c3 100644
--- a/include/net/netevent.h
+++ b/include/net/netevent.h
@@ -16,9 +16,8 @@ struct neighbour;
16 16
17struct netevent_redirect { 17struct netevent_redirect {
18 struct dst_entry *old; 18 struct dst_entry *old;
19 struct neighbour *old_neigh;
20 struct dst_entry *new; 19 struct dst_entry *new;
21 struct neighbour *new_neigh; 20 struct neighbour *neigh;
22 const void *daddr; 21 const void *daddr;
23}; 22};
24 23