Commit fec8292d authored by David S. Miller's avatar David S. Miller

ipv4: Use calculated 'neigh' instead of re-evaluating dst->neighbour

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent faa28314
...@@ -210,7 +210,7 @@ static inline int ip_finish_output2(struct sk_buff *skb) ...@@ -210,7 +210,7 @@ static inline int ip_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);
} }
if (net_ratelimit()) if (net_ratelimit())
printk(KERN_DEBUG "ip_finish_output2: No header cache and no neighbour!\n"); printk(KERN_DEBUG "ip_finish_output2: No header cache and no neighbour!\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment