[PATCH net-next] net: ipv4: fix multipath RTM_GETROUTE behavior when iif is given

2017-04-07 Thread Florian Larysch
also change the protocol to UDP to avoid special treatment for ICMP. Signed-off-by: Florian Larysch --- net/ipv4/route.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 5dda1ef81c7e..5e1e60546fce 100644 --- a/net/ipv4/route.c

Re: [PATCH] net: ipv4: fix multipath RTM_GETROUTE behavior when iif is given

2017-04-03 Thread Florian Larysch
On Mon, Apr 03, 2017 at 01:33:39PM -0400, David Ahern wrote: > that function no longer exists since Nik's recent work > (bf4e0a3db97eb882368fd82980b3b1fa0b5b9778) Didn't notice that as I was looking at Linus' tree. Thanks. > So does the problem you noted still exist? Yes. And in fact, that chang

[PATCH] net: ipv4: fix multipath RTM_GETROUTE behavior when iif is given

2017-04-03 Thread Florian Larysch
. However, those are not set in the synthetic skb, causing it to return an arbitrary and incorrect result. Instead, use UDP, which gets no such special treatment. Signed-off-by: Florian Larysch --- net/ipv4/route.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv4/route.c b