Message ID | 20241113185431.1289708-14-anthony.l.nguyen@intel.com (mailing list archive) |
---|---|
State | New |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | Intel Wired LAN Driver Updates 2024-11-05 (ice, ixgbe, igc. igb, igbvf, e1000) | expand |
Dear Wander, dear Linux folks, Thank you for your patch. Am 13.11.24 um 19:54 schrieb Tony Nguyen: > From: Wander Lairson Costa <wander@redhat.com> > > tx_queue_lock and stats_lock are declared and initialized, but never > used. Remove them. > > Signed-off-by: Wander Lairson Costa <wander@redhat.com> > Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de> > Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com> Would a Fixes: tag be handy? Kind regards, Paul
On Thu, Nov 14, 2024 at 5:04 AM Paul Menzel <pmenzel@molgen.mpg.de> wrote: > > Dear Wander, dear Linux folks, > > > Thank you for your patch. > > > Am 13.11.24 um 19:54 schrieb Tony Nguyen: > > From: Wander Lairson Costa <wander@redhat.com> > > > > tx_queue_lock and stats_lock are declared and initialized, but never > > used. Remove them. > > > > Signed-off-by: Wander Lairson Costa <wander@redhat.com> > > Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de> > > Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com> > > Would a Fixes: tag be handy? > Hrm, this is not fixing anything, actually. It is just a cleanup. > > Kind regards, > > Paul >
diff --git a/drivers/net/ethernet/intel/igbvf/igbvf.h b/drivers/net/ethernet/intel/igbvf/igbvf.h index 6ad35a00a287..ca6e44245a7b 100644 --- a/drivers/net/ethernet/intel/igbvf/igbvf.h +++ b/drivers/net/ethernet/intel/igbvf/igbvf.h @@ -169,8 +169,6 @@ struct igbvf_adapter { u16 link_speed; u16 link_duplex; - spinlock_t tx_queue_lock; /* prevent concurrent tail updates */ - /* track device up/down/testing state */ unsigned long state; @@ -220,7 +218,6 @@ struct igbvf_adapter { /* OS defined structs */ struct net_device *netdev; struct pci_dev *pdev; - spinlock_t stats_lock; /* prevent concurrent stats updates */ /* structs defined in e1000_hw.h */ struct e1000_hw hw; diff --git a/drivers/net/ethernet/intel/igbvf/netdev.c b/drivers/net/ethernet/intel/igbvf/netdev.c index 925d7286a8ee..02044aa2181b 100644 --- a/drivers/net/ethernet/intel/igbvf/netdev.c +++ b/drivers/net/ethernet/intel/igbvf/netdev.c @@ -1656,12 +1656,9 @@ static int igbvf_sw_init(struct igbvf_adapter *adapter) if (igbvf_alloc_queues(adapter)) return -ENOMEM; - spin_lock_init(&adapter->tx_queue_lock); - /* Explicitly disable IRQ since the NIC can be in any state. */ igbvf_irq_disable(adapter); - spin_lock_init(&adapter->stats_lock); spin_lock_init(&adapter->hw.mbx_lock); set_bit(__IGBVF_DOWN, &adapter->state);