dect
/
linux-2.6
Archived
13
0
Fork 0

ipv4: Remove unnecessary test from ip_mkroute_input()

fl->oif will always be zero on the input path, so there is no reason
to test for that.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2011-03-10 16:23:24 -08:00
parent dbdd9a52e3
commit ff3fccb3d0
1 changed files with 1 additions and 1 deletions

View File

@ -2047,7 +2047,7 @@ static int ip_mkroute_input(struct sk_buff *skb,
unsigned hash;
#ifdef CONFIG_IP_ROUTE_MULTIPATH
if (res->fi && res->fi->fib_nhs > 1 && fl->oif == 0)
if (res->fi && res->fi->fib_nhs > 1)
fib_select_multipath(fl, res);
#endif