summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/intel/iavf/iavf_adminq.h
diff options
context:
space:
mode:
authorIvan Vecera <ivecera@redhat.com>2023-10-26 10:39:32 +0200
committerTony Nguyen <anthony.l.nguyen@intel.com>2023-11-27 09:34:04 -0800
commit3d66f21552df25cf56f7f800a8d7687c88771761 (patch)
tree41f87c28d985353287108552e16d691c62655e4a /drivers/net/ethernet/intel/iavf/iavf_adminq.h
parent4a95ce2407dadc4343759f96411442fdaa5467e4 (diff)
downloadlinux-stable-3d66f21552df25cf56f7f800a8d7687c88771761.tar.gz
linux-stable-3d66f21552df25cf56f7f800a8d7687c88771761.tar.bz2
linux-stable-3d66f21552df25cf56f7f800a8d7687c88771761.zip
iavf: Remove queue tracking fields from iavf_adminq_ring
Fields 'head', 'tail', 'len', 'bah' and 'bal' in iavf_adminq_ring are used to store register offsets. These offsets are initialized and remains constant so there is no need to store them in the iavf_adminq_ring structure. Remove these fields from iavf_adminq_ring and use register offset constants instead. Remove iavf_adminq_init_regs() that originally stores these constants into these fields. Finally improve iavf_check_asq_alive() that assumes that non-zero value of hw->aq.asq.len indicates fully initialized AdminQ send queue. Replace it by check for non-zero value of field hw->aq.asq.count that is non-zero when the sending queue is initialized and is zeroed during shutdown of the queue. Signed-off-by: Ivan Vecera <ivecera@redhat.com> Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com> Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com> Reviewed-by: Simon Horman <horms@kernel.org> Tested-by: Rafal Romanowski <rafal.romanowski@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/iavf/iavf_adminq.h')
-rw-r--r--drivers/net/ethernet/intel/iavf/iavf_adminq.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/net/ethernet/intel/iavf/iavf_adminq.h b/drivers/net/ethernet/intel/iavf/iavf_adminq.h
index 1f60518eb0e5..406506f64bdd 100644
--- a/drivers/net/ethernet/intel/iavf/iavf_adminq.h
+++ b/drivers/net/ethernet/intel/iavf/iavf_adminq.h
@@ -29,13 +29,6 @@ struct iavf_adminq_ring {
/* used for interrupt processing */
u16 next_to_use;
u16 next_to_clean;
-
- /* used for queue tracking */
- u32 head;
- u32 tail;
- u32 len;
- u32 bah;
- u32 bal;
};
/* ASQ transaction details */