diff options
author | David S. Miller <davem@davemloft.net> | 2011-03-10 20:01:16 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-10 20:03:45 -0500 |
commit | 1b7fe59322bef9e7a2c05b64a07a66b875299736 (patch) | |
tree | 1e3a1ca9931e41a7bf6bdec0ddbabe1f6c466b02 /net/ipv4/route.c | |
parent | ff3fccb3d05756ec9fb44350b059d31a5e8e0fdc (diff) |
ipv4: Kill flowi arg to fib_select_multipath()
Completely unused.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/route.c')
-rw-r--r-- | net/ipv4/route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index a7ac90cb151d..9c17e32d5623 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c | |||
@@ -2048,7 +2048,7 @@ static int ip_mkroute_input(struct sk_buff *skb, | |||
2048 | 2048 | ||
2049 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 2049 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
2050 | if (res->fi && res->fi->fib_nhs > 1) | 2050 | if (res->fi && res->fi->fib_nhs > 1) |
2051 | fib_select_multipath(fl, res); | 2051 | fib_select_multipath(res); |
2052 | #endif | 2052 | #endif |
2053 | 2053 | ||
2054 | /* create a routing cache entry */ | 2054 | /* create a routing cache entry */ |
@@ -2598,7 +2598,7 @@ static struct rtable *ip_route_output_slow(struct net *net, | |||
2598 | 2598 | ||
2599 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 2599 | #ifdef CONFIG_IP_ROUTE_MULTIPATH |
2600 | if (res.fi->fib_nhs > 1 && fl.oif == 0) | 2600 | if (res.fi->fib_nhs > 1 && fl.oif == 0) |
2601 | fib_select_multipath(&fl, &res); | 2601 | fib_select_multipath(&res); |
2602 | else | 2602 | else |
2603 | #endif | 2603 | #endif |
2604 | if (!res.prefixlen && res.type == RTN_UNICAST && !fl.oif) | 2604 | if (!res.prefixlen && res.type == RTN_UNICAST && !fl.oif) |