aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/core/neighbour.c4
-rw-r--r--net/ipv4/route.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c
index 96b1a749abb4..b142a0d76072 100644
--- a/net/core/neighbour.c
+++ b/net/core/neighbour.c
@@ -1210,7 +1210,9 @@ int neigh_resolve_output(struct sk_buff *skb)
1210 if (!neigh_event_send(neigh, skb)) { 1210 if (!neigh_event_send(neigh, skb)) {
1211 int err; 1211 int err;
1212 struct net_device *dev = neigh->dev; 1212 struct net_device *dev = neigh->dev;
1213 if (dev->header_ops->cache && !dst->hh) { 1213 if (dev->header_ops->cache &&
1214 !dst->hh &&
1215 !(dst->flags & DST_NOCACHE)) {
1214 write_lock_bh(&neigh->lock); 1216 write_lock_bh(&neigh->lock);
1215 if (!dst->hh) 1217 if (!dst->hh)
1216 neigh_hh_init(neigh, dst, dst->ops->protocol); 1218 neigh_hh_init(neigh, dst, dst->ops->protocol);
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index a61acea975f1..c3cb8bd23638 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1107,6 +1107,7 @@ restart:
1107 * on the route gc list. 1107 * on the route gc list.
1108 */ 1108 */
1109 1109
1110 rt->dst.flags |= DST_NOCACHE;
1110 if (rt->rt_type == RTN_UNICAST || rt->fl.iif == 0) { 1111 if (rt->rt_type == RTN_UNICAST || rt->fl.iif == 0) {
1111 int err = arp_bind_neighbour(&rt->dst); 1112 int err = arp_bind_neighbour(&rt->dst);
1112 if (err) { 1113 if (err) {