ipv6: Use calculated 'neigh' instead of re-evaluating dst->neighbour
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fec8292d9c
commit
a29282972c
|
@ -141,7 +141,7 @@ static int ip6_finish_output2(struct sk_buff *skb)
|
||||||
if (hh->hh_len)
|
if (hh->hh_len)
|
||||||
return neigh_hh_output(hh, skb);
|
return neigh_hh_output(hh, skb);
|
||||||
else
|
else
|
||||||
return dst->neighbour->output(skb);
|
return neigh->output(skb);
|
||||||
}
|
}
|
||||||
IP6_INC_STATS_BH(dev_net(dst->dev),
|
IP6_INC_STATS_BH(dev_net(dst->dev),
|
||||||
ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
|
ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
|
||||||
|
|
Loading…
Reference in New Issue