diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/net/route.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/route.h b/include/net/route.h index 5847e6fabe8e..3e3b14e060f9 100644 --- a/include/net/route.h +++ b/include/net/route.h | |||
@@ -110,7 +110,7 @@ extern int ip_rt_init(void); | |||
110 | extern void ip_rt_redirect(__be32 old_gw, __be32 dst, __be32 new_gw, | 110 | extern void ip_rt_redirect(__be32 old_gw, __be32 dst, __be32 new_gw, |
111 | __be32 src, struct net_device *dev); | 111 | __be32 src, struct net_device *dev); |
112 | extern void rt_cache_flush(int how); | 112 | extern void rt_cache_flush(int how); |
113 | extern int __ip_route_output_key(struct rtable **, const struct flowi *flp); | 113 | extern int __ip_route_output_key(struct net *, struct rtable **, const struct flowi *flp); |
114 | extern int ip_route_output_key(struct rtable **, struct flowi *flp); | 114 | extern int ip_route_output_key(struct rtable **, struct flowi *flp); |
115 | extern int ip_route_output_flow(struct rtable **rp, struct flowi *flp, struct sock *sk, int flags); | 115 | extern int ip_route_output_flow(struct rtable **rp, struct flowi *flp, struct sock *sk, int flags); |
116 | extern int ip_route_input(struct sk_buff*, __be32 dst, __be32 src, u8 tos, struct net_device *devin); | 116 | extern int ip_route_input(struct sk_buff*, __be32 dst, __be32 src, u8 tos, struct net_device *devin); |
@@ -158,7 +158,7 @@ static inline int ip_route_connect(struct rtable **rp, __be32 dst, | |||
158 | 158 | ||
159 | int err; | 159 | int err; |
160 | if (!dst || !src) { | 160 | if (!dst || !src) { |
161 | err = __ip_route_output_key(rp, &fl); | 161 | err = __ip_route_output_key(&init_net, rp, &fl); |
162 | if (err) | 162 | if (err) |
163 | return err; | 163 | return err; |
164 | fl.fl4_dst = (*rp)->rt_dst; | 164 | fl.fl4_dst = (*rp)->rt_dst; |