Re: [PATCH 3/6] mpls: add VPLS entry points

2017-08-21 Thread Amine Kherbouche
On 08/21/2017 05:55 PM, David Lamparter wrote: + if (rt->rt_payload_type == MPT_VPLS) > > + return vpls_rcv(skb, dev, pt, rt, hdr, orig_dev); > > you should get the ret value of vpls_rcv() and increment stats if error > occurs. An error in vpls_rcv() is not a receive error o

Re: [PATCH 3/6] mpls: add VPLS entry points

2017-08-21 Thread David Lamparter
On Mon, Aug 21, 2017 at 04:01:15PM +0200, Amine Kherbouche wrote: > On 08/16/2017 07:01 PM, David Lamparter wrote: > > This wires up the neccessary calls for VPLS into the MPLS forwarding > > pieces. Since CONFIG_MPLS_VPLS doesn't exist yet in Kconfig, it'll > > never be enabled, so we're on the s

Re: [PATCH 3/6] mpls: add VPLS entry points

2017-08-21 Thread Amine Kherbouche
On 08/16/2017 07:01 PM, David Lamparter wrote: This wires up the neccessary calls for VPLS into the MPLS forwarding pieces. Since CONFIG_MPLS_VPLS doesn't exist yet in Kconfig, it'll never be enabled, so we're on the stubs for now. Signed-off-by: David Lamparter --- include/uapi/linux/rtnet

Re: [PATCH 3/6] mpls: add VPLS entry points

2017-08-19 Thread kbuild test robot
Hi David, [auto build test ERROR on net-next/master] [also build test ERROR on next-20170817] [cannot apply to v4.13-rc5] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/David-Lamparter/bridge-le

[PATCH 3/6] mpls: add VPLS entry points

2017-08-16 Thread David Lamparter
This wires up the neccessary calls for VPLS into the MPLS forwarding pieces. Since CONFIG_MPLS_VPLS doesn't exist yet in Kconfig, it'll never be enabled, so we're on the stubs for now. Signed-off-by: David Lamparter --- include/uapi/linux/rtnetlink.h | 1 + net/mpls/af_mpls.c | 54