[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240815193614.4120810-1-sean.anderson@linux.dev>
Date: Thu, 15 Aug 2024 15:36:09 -0400
From: Sean Anderson <sean.anderson@...ux.dev>
To: Radhey Shyam Pandey <radhey.shyam.pandey@....com>,
netdev@...r.kernel.org
Cc: "David S . Miller" <davem@...emloft.net>,
Andrew Lunn <andrew@...n.ch>,
linux-arm-kernel@...ts.infradead.org,
Michal Simek <michal.simek@....com>,
Daniel Borkmann <daniel@...earbox.net>,
linux-kernel@...r.kernel.org,
Paolo Abeni <pabeni@...hat.com>,
Jakub Kicinski <kuba@...nel.org>,
Eric Dumazet <edumazet@...gle.com>,
Sean Anderson <sean.anderson@...ux.dev>
Subject: [PATCH net-next v2 0/5] net: xilinx: axienet: Multicast fixes and improvements
This series has a few small patches improving the handling of multicast
addresses. In particular, it makes the driver a whole lot less spammy,
and adjusts things so we aren't in promiscuous mode when we have more
than four multicast addresses (a common occurance on modern systems).
As the hardware has a 4-entry CAM, the ideal method would be to "pack"
multiple addresses into one CAM entry. Something like:
entry.address = address[0] | address[1];
entry.mask = ~(address[0] ^ address[1]);
Which would make the entry match both addresses (along with some others
that would need to be filtered in software).
Mapping addresses to entries in an efficient way is a bit tricky. If
anyone knows of an in-tree example of something like this, I'd be glad
to hear about it.
Changes in v2:
- Split off IFF_PROMISC change from printing changes
Sean Anderson (5):
net: xilinx: axienet: Always disable promiscuous mode
net: xilinx: axienet: Fix dangling multicast addresses
net: xilinx: axienet: Don't print if we go into promiscuous mode
net: xilinx: axienet: Don't set IFF_PROMISC in ndev->flags
net: xilinx: axienet: Support IFF_ALLMULTI
drivers/net/ethernet/xilinx/xilinx_axienet.h | 3 ++
.../net/ethernet/xilinx/xilinx_axienet_main.c | 52 +++++++++----------
2 files changed, 29 insertions(+), 26 deletions(-)
--
2.35.1.1320.gc452695387.dirty
Powered by blists - more mailing lists