RE: [Intel-wired-lan] [PATCH net-next v9 7/7] pcnet32: Implement ndo_set_rx_mode_async callback
From: Loktionov, Aleksandr <hidden>
Date: 2026-03-16 07:35:31
Also in:
intel-wired-lan, lkml, virtualization
quoted hunk ↗ jump to hunk
-----Original Message----- From: Intel-wired-lan <redacted> On Behalf Of I Viswanath Sent: Saturday, March 14, 2026 7:28 PM To: stfomichev@gmail.com; horms@kernel.org; edumazet@google.com; pabeni@redhat.com; andrew+netdev@lunn.ch; kuba@kernel.org; davem@davemloft.net; eperezma@redhat.com; xuanzhuo@linux.alibaba.com; jasowang@redhat.com; mst@redhat.com; Kitszel, Przemyslaw [off-list ref]; Nguyen, Anthony L [off-list ref]; Keller, Jacob E [off-list ref]; ronak.doshi@broadcom.com; pcnet32@frontier.com Cc: bcm-kernel-feedback-list@broadcom.com; netdev@vger.kernel.org; virtualization@lists.linux.dev; intel-wired-lan@lists.osuosl.org; linux-kernel@vger.kernel.org; I Viswanath [off-list ref] Subject: [Intel-wired-lan] [PATCH net-next v9 7/7] pcnet32: Implement ndo_set_rx_mode_async callback Implement the ndo_set_rx_mode_async callback and update the driver to use the snapshot/commit model for RX mode update. Signed-off-by: I Viswanath <redacted> --- There are no calls to netif_set_rx_mode in pcnet32 drivers/net/ethernet/amd/pcnet32.c | 65 ++++++++++++++++++++++++----- - 1 file changed, 53 insertions(+), 12 deletions(-)diff --git a/drivers/net/ethernet/amd/pcnet32.cb/drivers/net/ethernet/amd/pcnet32.c index 911808ab13a7..d5ad96985d68 100644--- a/drivers/net/ethernet/amd/pcnet32.c +++ b/drivers/net/ethernet/amd/pcnet32.c@@ -314,8 +314,9 @@ static void pcnet32_tx_timeout(struct net_device*dev, unsigned int txqueue); static irqreturn_t pcnet32_interrupt(int, void *); static int pcnet32_close(struct net_device *); static struct net_device_stats *pcnet32_get_stats(struct net_device *); -static void pcnet32_load_multicast(struct net_device *dev);
...
-- 2.47.3
Reviewed-by: Aleksandr Loktionov <redacted>