Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ff3fccb3 authored by David S. Miller's avatar David S. Miller
Browse files

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: default avatarDavid S. Miller <davem@davemloft.net>
parent dbdd9a52
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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