diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2007-12-06 19:11:48 -0500 |
---|---|---|
committer | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2008-03-04 01:18:24 -0500 |
commit | 3b00944c5c73c49ef52bf17b66557c43c1d945fe (patch) | |
tree | 1b58242063283b24b26a0e060d378efe76157283 /net/ipv6/ndisc.c | |
parent | 95e41e93e18d8e1e272ce23d96bae4f17ce11d42 (diff) |
[IPV6]: Make ndisc_dst_alloc() common for later use.
For later use, this patch is renaming ndisc_dst_alloc()
(and related function/structures) to icmp6_dst_alloc()
(and so on). This patch also removing unused function-
pointer argument for it.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Diffstat (limited to 'net/ipv6/ndisc.c')
-rw-r--r-- | net/ipv6/ndisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 8db5f4a419aa..eb322959a3e1 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c | |||
@@ -462,7 +462,7 @@ static void __ndisc_send(struct net_device *dev, | |||
462 | icmpv6_flow_init(ndisc_socket->sk, &fl, type, | 462 | icmpv6_flow_init(ndisc_socket->sk, &fl, type, |
463 | saddr, daddr, dev->ifindex); | 463 | saddr, daddr, dev->ifindex); |
464 | 464 | ||
465 | dst = ndisc_dst_alloc(dev, neigh, daddr, ip6_output); | 465 | dst = icmp6_dst_alloc(dev, neigh, daddr); |
466 | if (!dst) | 466 | if (!dst) |
467 | return; | 467 | return; |
468 | 468 | ||