summaryrefslogtreecommitdiffstats
path: root/include/net/route.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/route.h')
-rw-r--r--include/net/route.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/net/route.h b/include/net/route.h
index 6361f9335774..47eb25ac1f7f 100644
--- a/include/net/route.h
+++ b/include/net/route.h
@@ -201,18 +201,18 @@ static inline struct rtable *ip_route_output_gre(struct net *net, struct flowi4
201} 201}
202 202
203extern int ip_route_input_common(struct sk_buff *skb, __be32 dst, __be32 src, 203extern int ip_route_input_common(struct sk_buff *skb, __be32 dst, __be32 src,
204 u8 tos, struct net_device *devin, bool noref, bool nocache); 204 u8 tos, struct net_device *devin, bool noref);
205 205
206static inline int ip_route_input(struct sk_buff *skb, __be32 dst, __be32 src, 206static inline int ip_route_input(struct sk_buff *skb, __be32 dst, __be32 src,
207 u8 tos, struct net_device *devin) 207 u8 tos, struct net_device *devin)
208{ 208{
209 return ip_route_input_common(skb, dst, src, tos, devin, false, false); 209 return ip_route_input_common(skb, dst, src, tos, devin, false);
210} 210}
211 211
212static inline int ip_route_input_noref(struct sk_buff *skb, __be32 dst, __be32 src, 212static inline int ip_route_input_noref(struct sk_buff *skb, __be32 dst, __be32 src,
213 u8 tos, struct net_device *devin, bool nocache) 213 u8 tos, struct net_device *devin)
214{ 214{
215 return ip_route_input_common(skb, dst, src, tos, devin, true, nocache); 215 return ip_route_input_common(skb, dst, src, tos, devin, true);
216} 216}
217 217
218extern void ipv4_update_pmtu(struct sk_buff *skb, struct net *net, u32 mtu, 218extern void ipv4_update_pmtu(struct sk_buff *skb, struct net *net, u32 mtu,