Re: [PATCH net,v3] vrf: check accept_source_route on the original netdevice

2019-04-01 Thread David Miller
From: Stephen Suryaputra Date: Mon, 1 Apr 2019 09:17:32 -0400 > Configuration check to accept source route IP options should be made on > the incoming netdevice when the skb->dev is an l3mdev master. The route > lookup for the source route next hop also needs the incoming netdev. > > v2->v3: >

Re: [PATCH net,v3] vrf: check accept_source_route on the original netdevice

2019-04-01 Thread David Ahern
On 4/1/19 7:17 AM, Stephen Suryaputra wrote: > Configuration check to accept source route IP options should be made on > the incoming netdevice when the skb->dev is an l3mdev master. The route > lookup for the source route next hop also needs the incoming netdev. > > v2->v3: > - Simplify by passin

[PATCH net,v3] vrf: check accept_source_route on the original netdevice

2019-04-01 Thread Stephen Suryaputra
Configuration check to accept source route IP options should be made on the incoming netdevice when the skb->dev is an l3mdev master. The route lookup for the source route next hop also needs the incoming netdev. v2->v3: - Simplify by passing the original netdevice down the stack (per David Aher