diff options
author | David Ahern <dsa@cumulusnetworks.com> | 2017-01-07 02:39:58 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-08 23:14:35 +0100 |
commit | dc33da59ff887985db559d0b116ca8b98f63651e (patch) | |
tree | fa683340da38ff5a43a1d3668157f9596a02432b | |
parent | net: ipmr: Remove nowait arg to ipmr_get_route (diff) | |
download | linux-dc33da59ff887985db559d0b116ca8b98f63651e.tar.xz linux-dc33da59ff887985db559d0b116ca8b98f63651e.zip |
net: ipv4: Remove flow arg from ip_mkroute_input
fl4 arg is not used; remove it.
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv4/route.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 0965f8c59e7e..f51823dc998b 100644 --- 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: |