From: David Lamparter <equinox@diac24.net>
To: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Cc: netdev@vger.kernel.org, roopa@cumulusnetworks.com,
bridge@lists.linux-foundation.org, amine.kherbouche@6wind.com,
David Lamparter <equinox@diac24.net>
Subject: Re: [Bridge] [RFC net-next v2] bridge lwtunnel, VPLS & NVGRE
Date: Tue, 22 Aug 2017 14:06:10 +0200 [thread overview]
Message-ID: <20170822120610.GC773745@eidolon> (raw)
In-Reply-To: <22d7d847-0914-dca9-66b8-4231e6e0b01c@cumulusnetworks.com>
On Tue, Aug 22, 2017 at 02:55:04PM +0300, Nikolay Aleksandrov wrote:
> On 22/08/17 14:32, David Lamparter wrote:
> > On Tue, Aug 22, 2017 at 02:01:40PM +0300, Nikolay Aleksandrov wrote:
> >> On 22/08/17 03:01, Stephen Hemminger wrote:
> >>> I know the bridge is an easy target to extend L2 forwarding, but it is not
> >>> the only option. Have you condidered building a new driver (like VXLAN does)
> >>> which does the forwarding you want. Having all features in one driver
> >>> makes for worse performance, and increased complexity.
> >>>
> >>
> >> +1
> >>
> >> As I said before, a separate implementation will be much cleaner and will not affect
> >> the bridge in any way, paying both performance and complexity price for something that
> >> the majority of users will not be using isn't worth it. In addition this creates a
> >> silent dependency between the bridge and the fdb metadata dst users, it would be much
> >> more preferable to be able to run them separately.
> >> If there is any code that will need to be re-used by VPLS (or anyone else) figure out a way
> >> to factor it out.
> >
> > Could you tell me why this argument didn't apply to the bridge vlan
> > tunnel code? It adds complexity to the bridge specifically for VXLAN
> > (and it does *not* transfer to VPLS or 802.11) and reduces performance
> >
> > ... by actually accessing the same metadata that this patchset does.
>
> The separation is clean and does not add any dependencies, that code
> is well isolated. As for performance, the impact is minimal as it
> adds a test for a port flag that is already in the cache at that
> point.
Ah, ok, now this is useful input... I can add a BR_PORT_METADATA flag.
> In fact it can be compiled-out entirely if you disable bridge vlan
> support. The metadata you're referring to is not accessed if the port
> flag is not set or vlan support is compiled out removing its impact
> entirely.
Ok, I can probably adapt this patchset to do the same.
> You can have a vxlan setup without bridge, no ?
You can run the VPLS code without a bridge too... behaviour will be the
same as with other ip tunnels when you set the destination to multicast
(packets get flooded.)
-David
WARNING: multiple messages have this Message-ID (diff)
From: David Lamparter <equinox@diac24.net>
To: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Cc: netdev@vger.kernel.org, roopa@cumulusnetworks.com,
bridge@lists.linux-foundation.org, amine.kherbouche@6wind.com,
David Lamparter <equinox@diac24.net>
Subject: Re: [RFC net-next v2] bridge lwtunnel, VPLS & NVGRE
Date: Tue, 22 Aug 2017 14:06:10 +0200 [thread overview]
Message-ID: <20170822120610.GC773745@eidolon> (raw)
In-Reply-To: <22d7d847-0914-dca9-66b8-4231e6e0b01c@cumulusnetworks.com>
On Tue, Aug 22, 2017 at 02:55:04PM +0300, Nikolay Aleksandrov wrote:
> On 22/08/17 14:32, David Lamparter wrote:
> > On Tue, Aug 22, 2017 at 02:01:40PM +0300, Nikolay Aleksandrov wrote:
> >> On 22/08/17 03:01, Stephen Hemminger wrote:
> >>> I know the bridge is an easy target to extend L2 forwarding, but it is not
> >>> the only option. Have you condidered building a new driver (like VXLAN does)
> >>> which does the forwarding you want. Having all features in one driver
> >>> makes for worse performance, and increased complexity.
> >>>
> >>
> >> +1
> >>
> >> As I said before, a separate implementation will be much cleaner and will not affect
> >> the bridge in any way, paying both performance and complexity price for something that
> >> the majority of users will not be using isn't worth it. In addition this creates a
> >> silent dependency between the bridge and the fdb metadata dst users, it would be much
> >> more preferable to be able to run them separately.
> >> If there is any code that will need to be re-used by VPLS (or anyone else) figure out a way
> >> to factor it out.
> >
> > Could you tell me why this argument didn't apply to the bridge vlan
> > tunnel code? It adds complexity to the bridge specifically for VXLAN
> > (and it does *not* transfer to VPLS or 802.11) and reduces performance
> >
> > ... by actually accessing the same metadata that this patchset does.
>
> The separation is clean and does not add any dependencies, that code
> is well isolated. As for performance, the impact is minimal as it
> adds a test for a port flag that is already in the cache at that
> point.
Ah, ok, now this is useful input... I can add a BR_PORT_METADATA flag.
> In fact it can be compiled-out entirely if you disable bridge vlan
> support. The metadata you're referring to is not accessed if the port
> flag is not set or vlan support is compiled out removing its impact
> entirely.
Ok, I can probably adapt this patchset to do the same.
> You can have a vxlan setup without bridge, no ?
You can run the VPLS code without a bridge too... behaviour will be the
same as with other ip tunnels when you set the destination to multicast
(packets get flooded.)
-David
next prev parent reply other threads:[~2017-08-22 12:06 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-21 17:15 [Bridge] [RFC net-next v2] bridge lwtunnel, VPLS & NVGRE David Lamparter
2017-08-21 17:15 ` David Lamparter
2017-08-21 17:15 ` [Bridge] [PATCH 1/6] bridge: lwtunnel support in FDB David Lamparter
2017-08-21 17:15 ` David Lamparter
2017-08-21 17:15 ` [Bridge] [PATCH 2/6] bridge: lwtunnel netlink interface David Lamparter
2017-08-21 17:15 ` David Lamparter
2017-08-21 17:15 ` [Bridge] [PATCH 3/6] gretap: support lwtunnel under bridge (NVGRE) David Lamparter
2017-08-21 17:15 ` David Lamparter
2017-08-21 17:15 ` [Bridge] [PATCH 4/6] mpls: split forwarding path on rx/tx boundary David Lamparter
2017-08-21 17:15 ` David Lamparter
2017-08-21 17:15 ` [Bridge] [PATCH 5/6] mpls: add VPLS entry points David Lamparter
2017-08-21 17:15 ` David Lamparter
2017-08-21 17:15 ` [Bridge] [PATCH 6/6] mpls: VPLS support David Lamparter
2017-08-21 17:15 ` David Lamparter
2017-08-28 9:21 ` Amine Kherbouche
2017-08-28 9:21 ` [Bridge] " Amine Kherbouche
2017-08-22 0:01 ` [Bridge] [RFC net-next v2] bridge lwtunnel, VPLS & NVGRE Stephen Hemminger
2017-08-22 0:01 ` Stephen Hemminger
2017-08-22 0:29 ` [Bridge] " David Lamparter
2017-08-22 0:29 ` David Lamparter
2017-08-22 11:01 ` [Bridge] " Nikolay Aleksandrov
2017-08-22 11:01 ` Nikolay Aleksandrov
2017-08-22 11:32 ` [Bridge] " David Lamparter
2017-08-22 11:32 ` David Lamparter
2017-08-22 11:55 ` [Bridge] " Nikolay Aleksandrov
2017-08-22 11:55 ` Nikolay Aleksandrov
2017-08-22 12:06 ` David Lamparter [this message]
2017-08-22 12:06 ` David Lamparter
2017-08-22 4:43 ` [Bridge] " Roopa Prabhu
2017-08-22 4:43 ` Roopa Prabhu
2017-08-22 11:24 ` [Bridge] " David Lamparter
2017-08-22 11:24 ` David Lamparter
2017-09-11 8:02 ` Amine Kherbouche
2017-09-11 8:02 ` [Bridge] " Amine Kherbouche
2017-09-19 14:46 ` Amine Kherbouche
2017-09-19 14:46 ` [Bridge] " Amine Kherbouche
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170822120610.GC773745@eidolon \
--to=equinox@diac24.net \
--cc=amine.kherbouche@6wind.com \
--cc=bridge@lists.linux-foundation.org \
--cc=netdev@vger.kernel.org \
--cc=nikolay@cumulusnetworks.com \
--cc=roopa@cumulusnetworks.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.