aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-07-16 14:25:54 -0700
committerDavid S. Miller <davem@davemloft.net>2011-07-16 14:25:54 -0700
commitfec8292d9cb662274b583c5c69fdfa6932e593a5 (patch)
tree9bbc0cd40d550fcc0406ec317aa612f69aff6a4f /net/ipv4
parentbnx2x: Fix compilation when CNIC is not selected in config (diff)
downloadlinux-dev-fec8292d9cb662274b583c5c69fdfa6932e593a5.tar.xz
linux-dev-fec8292d9cb662274b583c5c69fdfa6932e593a5.zip
ipv4: Use calculated 'neigh' instead of re-evaluating dst->neighbour
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/ip_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index a621b96aed15..1ac674a68c77 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -210,7 +210,7 @@ static inline int ip_finish_output2(struct sk_buff *skb)
if (hh->hh_len)
return neigh_hh_output(hh, skb);
else
- return dst->neighbour->output(skb);
+ return neigh->output(skb);
}
if (net_ratelimit())
printk(KERN_DEBUG "ip_finish_output2: No header cache and no neighbour!\n");