projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f09eae
)
net: ipv4: Remove flow arg from ip_mkroute_input
author
David Ahern
<dsa@cumulusnetworks.com>
Sat, 7 Jan 2017 01:39:58 +0000
(17:39 -0800)
committer
David S. Miller
<davem@davemloft.net>
Sun, 8 Jan 2017 22:14:35 +0000
(17:14 -0500)
fl4 arg is not used; remove it.
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/route.c
patch
|
blob
|
history
diff --git
a/net/ipv4/route.c
b/net/ipv4/route.c
index 0965f8c59e7e4757d2deb5072f43cd3eb344b48d..f51823dc998bbe2c19ceac4e471e82b0e4b1eaf3 100644
(file)
--- a/
net/ipv4/route.c
+++ b/
net/ipv4/route.c
@@
-1758,7
+1758,6
@@
standard_hash:
static int ip_mkroute_input(struct sk_buff *skb,
struct fib_result *res,
- const struct flowi4 *fl4,
struct in_device *in_dev,
__be32 daddr, __be32 saddr, u32 tos)
{
@@
-1883,7
+1882,7
@@
static int ip_route_input_slow(struct sk_buff *skb, __be32 daddr, __be32 saddr,
if (res.type != RTN_UNICAST)
goto martian_destination;
- err = ip_mkroute_input(skb, &res,
&fl4,
in_dev, daddr, saddr, tos);
+ err = ip_mkroute_input(skb, &res, in_dev, daddr, saddr, tos);
out: return err;
brd_input: