mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
ipv6: remove unused neigh parameter from ndisc functions
Since commit 12fd84f438
("ipv6: Remove unused neigh argument for
icmp6_dst_alloc() and its callers."), the neigh parameter of ndisc_send_na
and ndisc_send_ns is unused.
CC: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: Jiri Benc <jbenc@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
92c14d9b5e
commit
38cf595b19
@ -342,7 +342,7 @@ static void do_neigh_solicit(struct usbnet *dev, u8 *buf, u16 tci)
|
||||
in6_dev_put(in6_dev);
|
||||
|
||||
/* ipv6_stub != NULL if in6_dev_get returned an inet6_dev */
|
||||
ipv6_stub->ndisc_send_na(netdev, NULL, &iph->saddr, &msg->target,
|
||||
ipv6_stub->ndisc_send_na(netdev, &iph->saddr, &msg->target,
|
||||
is_router /* router */,
|
||||
true /* solicited */,
|
||||
false /* override */,
|
||||
|
@ -192,8 +192,7 @@ struct ipv6_stub {
|
||||
int (*ipv6_dst_lookup)(struct net *net, struct sock *sk,
|
||||
struct dst_entry **dst, struct flowi6 *fl6);
|
||||
void (*udpv6_encap_enable)(void);
|
||||
void (*ndisc_send_na)(struct net_device *dev, struct neighbour *neigh,
|
||||
const struct in6_addr *daddr,
|
||||
void (*ndisc_send_na)(struct net_device *dev, const struct in6_addr *daddr,
|
||||
const struct in6_addr *solicited_addr,
|
||||
bool router, bool solicited, bool override, bool inc_opt);
|
||||
struct neigh_table *nd_tbl;
|
||||
|
@ -180,15 +180,13 @@ void ndisc_cleanup(void);
|
||||
|
||||
int ndisc_rcv(struct sk_buff *skb);
|
||||
|
||||
void ndisc_send_ns(struct net_device *dev, struct neighbour *neigh,
|
||||
const struct in6_addr *solicit,
|
||||
void ndisc_send_ns(struct net_device *dev, const struct in6_addr *solicit,
|
||||
const struct in6_addr *daddr, const struct in6_addr *saddr,
|
||||
struct sk_buff *oskb);
|
||||
|
||||
void ndisc_send_rs(struct net_device *dev,
|
||||
const struct in6_addr *saddr, const struct in6_addr *daddr);
|
||||
void ndisc_send_na(struct net_device *dev, struct neighbour *neigh,
|
||||
const struct in6_addr *daddr,
|
||||
void ndisc_send_na(struct net_device *dev, const struct in6_addr *daddr,
|
||||
const struct in6_addr *solicited_addr,
|
||||
bool router, bool solicited, bool override, bool inc_opt);
|
||||
|
||||
|
@ -3625,7 +3625,7 @@ static void addrconf_dad_work(struct work_struct *w)
|
||||
|
||||
/* send a neighbour solicitation for our addr */
|
||||
addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
|
||||
ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any, NULL);
|
||||
ndisc_send_ns(ifp->idev->dev, &ifp->addr, &mcaddr, &in6addr_any, NULL);
|
||||
out:
|
||||
in6_ifa_put(ifp);
|
||||
rtnl_unlock();
|
||||
|
@ -474,8 +474,7 @@ static void ndisc_send_skb(struct sk_buff *skb,
|
||||
rcu_read_unlock();
|
||||
}
|
||||
|
||||
void ndisc_send_na(struct net_device *dev, struct neighbour *neigh,
|
||||
const struct in6_addr *daddr,
|
||||
void ndisc_send_na(struct net_device *dev, const struct in6_addr *daddr,
|
||||
const struct in6_addr *solicited_addr,
|
||||
bool router, bool solicited, bool override, bool inc_opt)
|
||||
{
|
||||
@ -541,7 +540,7 @@ static void ndisc_send_unsol_na(struct net_device *dev)
|
||||
|
||||
read_lock_bh(&idev->lock);
|
||||
list_for_each_entry(ifa, &idev->addr_list, if_list) {
|
||||
ndisc_send_na(dev, NULL, &in6addr_linklocal_allnodes, &ifa->addr,
|
||||
ndisc_send_na(dev, &in6addr_linklocal_allnodes, &ifa->addr,
|
||||
/*router=*/ !!idev->cnf.forwarding,
|
||||
/*solicited=*/ false, /*override=*/ true,
|
||||
/*inc_opt=*/ true);
|
||||
@ -551,8 +550,7 @@ static void ndisc_send_unsol_na(struct net_device *dev)
|
||||
in6_dev_put(idev);
|
||||
}
|
||||
|
||||
void ndisc_send_ns(struct net_device *dev, struct neighbour *neigh,
|
||||
const struct in6_addr *solicit,
|
||||
void ndisc_send_ns(struct net_device *dev, const struct in6_addr *solicit,
|
||||
const struct in6_addr *daddr, const struct in6_addr *saddr,
|
||||
struct sk_buff *oskb)
|
||||
{
|
||||
@ -679,12 +677,12 @@ static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb)
|
||||
"%s: trying to ucast probe in NUD_INVALID: %pI6\n",
|
||||
__func__, target);
|
||||
}
|
||||
ndisc_send_ns(dev, neigh, target, target, saddr, skb);
|
||||
ndisc_send_ns(dev, target, target, saddr, skb);
|
||||
} else if ((probes -= NEIGH_VAR(neigh->parms, APP_PROBES)) < 0) {
|
||||
neigh_app_ns(neigh);
|
||||
} else {
|
||||
addrconf_addr_solict_mult(target, &mcaddr);
|
||||
ndisc_send_ns(dev, NULL, target, &mcaddr, saddr, skb);
|
||||
ndisc_send_ns(dev, target, &mcaddr, saddr, skb);
|
||||
}
|
||||
}
|
||||
|
||||
@ -828,7 +826,7 @@ static void ndisc_recv_ns(struct sk_buff *skb)
|
||||
is_router = idev->cnf.forwarding;
|
||||
|
||||
if (dad) {
|
||||
ndisc_send_na(dev, NULL, &in6addr_linklocal_allnodes, &msg->target,
|
||||
ndisc_send_na(dev, &in6addr_linklocal_allnodes, &msg->target,
|
||||
!!is_router, false, (ifp != NULL), true);
|
||||
goto out;
|
||||
}
|
||||
@ -849,8 +847,7 @@ static void ndisc_recv_ns(struct sk_buff *skb)
|
||||
NEIGH_UPDATE_F_WEAK_OVERRIDE|
|
||||
NEIGH_UPDATE_F_OVERRIDE);
|
||||
if (neigh || !dev->header_ops) {
|
||||
ndisc_send_na(dev, neigh, saddr, &msg->target,
|
||||
!!is_router,
|
||||
ndisc_send_na(dev, saddr, &msg->target, !!is_router,
|
||||
true, (ifp != NULL && inc), inc);
|
||||
if (neigh)
|
||||
neigh_release(neigh);
|
||||
|
@ -514,7 +514,7 @@ static void rt6_probe_deferred(struct work_struct *w)
|
||||
container_of(w, struct __rt6_probe_work, work);
|
||||
|
||||
addrconf_addr_solict_mult(&work->target, &mcaddr);
|
||||
ndisc_send_ns(work->dev, NULL, &work->target, &mcaddr, NULL, NULL);
|
||||
ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, NULL);
|
||||
dev_put(work->dev);
|
||||
kfree(work);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user