aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/route.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/route.c')
-rw-r--r--net/ipv4/route.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index b576f8cd4019..1b70ffd12615 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -2536,7 +2536,8 @@ int ip_route_output_flow(struct rtable **rp, struct flowi *flp, struct sock *sk,
2536 flp->fl4_src = (*rp)->rt_src; 2536 flp->fl4_src = (*rp)->rt_src;
2537 if (!flp->fl4_dst) 2537 if (!flp->fl4_dst)
2538 flp->fl4_dst = (*rp)->rt_dst; 2538 flp->fl4_dst = (*rp)->rt_dst;
2539 err = __xfrm_lookup((struct dst_entry **)rp, flp, sk, flags); 2539 err = __xfrm_lookup((struct dst_entry **)rp, flp, sk,
2540 flags ? XFRM_LOOKUP_WAIT : 0);
2540 if (err == -EREMOTE) 2541 if (err == -EREMOTE)
2541 err = ipv4_dst_blackhole(rp, flp, sk); 2542 err = ipv4_dst_blackhole(rp, flp, sk);
2542 2543