From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vlad Yasevich Subject: Re: [PATCH net-next v5 02/14] bridge: Add vlan filtering infrastructure Date: Fri, 11 Jan 2013 10:33:35 -0500 Message-ID: <50F030CF.20800@redhat.com> References: <1357751882-8619-1-git-send-email-vyasevic@redhat.com> <1357751882-8619-3-git-send-email-vyasevic@redhat.com> <20130110103614.23383079@nehalam.linuxnetplumber.net> <50EF0FF7.3080407@redhat.com> <50EF1537.7030209@redhat.com> <20130110141005.427ccaf9@nehalam.linuxnetplumber.net> <50EF6759.2000908@redhat.com> <20130111155354.4ff8aeac.shmulik.ladkani@gmail.com> Reply-To: vyasevic@redhat.com Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Stephen Hemminger , netdev@vger.kernel.org, davem@davemloft.net, bridge@lists.linux-foundation.org, mst@redhat.com To: Shmulik Ladkani Return-path: Received: from mx1.redhat.com ([209.132.183.28]:41248 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752022Ab3AKPdl (ORCPT ); Fri, 11 Jan 2013 10:33:41 -0500 In-Reply-To: <20130111155354.4ff8aeac.shmulik.ladkani@gmail.com> Sender: netdev-owner@vger.kernel.org List-ID: On 01/11/2013 08:53 AM, Shmulik Ladkani wrote: > Hi, > > On Thu, 10 Jan 2013 20:14:01 -0500 Vlad Yasevich wrote: >> On 01/10/2013 05:10 PM, Stephen Hemminger wrote: >>> Also the concept of different filters for egress vs ingress is feature >>> madness. It doesn't make sense to have half-duplex connectivity. >> >> I am of the same opinion, but it actually simplified the code quite a >> bit, but at the cost of additional memory footprint. If you find this >> very objectionable, I can easily remove it. > > Haven't looked on the V5 series yet, but just to clarify: > > There's *no* different membership _filter_ for egress vs ingress. > The vlan's membership map is consulted on both ingress and egress. Right. > > However, upon egress, a vlan egress _policy_ should be applied, which > determines whether the frame should egress tagged/untagged on the egress > port. Right. This is how it is implemented in this series and this is what Stephen finds "mad". You can configure the policy that on egress the packet is untagged, but on ingress it has to be tagged. This kind of half-duplex configuration is very prone to errors. -vlad > > The expected logic in detailed in [1] (please read "steps 1..5"). > and the data structures needed are: > - per port: PVID > - per VLAN: port membership map > - per VLAN: port egress policy map > > Altough on 1st look it might look mad ;-) > But, this is genuinely simple, highly configurable and allows great > flexibility (IMO with no additional code complexity; Vlad can probably > comment). > > The motivation is to be aligned with behavior and configurability of > vlan switches. > > Regards, > Shmulik > > [1] > http://marc.info/?l=linux-netdev&m=135603447030826&w=2 >