--- /dev/null
+From 6c5b6ca7642f2992502a22dbd8b80927de174b67 Mon Sep 17 00:00:00 2001
+From: Jesse Brandeburg <jesse.brandeburg@intel.com>
+Date: Mon, 4 Mar 2024 16:37:07 -0800
+Subject: ice: fix typo in assignment
+
+From: Jesse Brandeburg <jesse.brandeburg@intel.com>
+
+commit 6c5b6ca7642f2992502a22dbd8b80927de174b67 upstream.
+
+Fix an obviously incorrect assignment, created with a typo or cut-n-paste
+error.
+
+Fixes: 5995ef88e3a8 ("ice: realloc VSI stats arrays")
+Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
+Reviewed-by: Simon Horman <horms@kernel.org>
+Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de>
+Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ drivers/net/ethernet/intel/ice/ice_lib.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/net/ethernet/intel/ice/ice_lib.c
++++ b/drivers/net/ethernet/intel/ice/ice_lib.c
+@@ -3111,7 +3111,7 @@ ice_vsi_realloc_stat_arrays(struct ice_v
+ }
+ }
+
+- tx_ring_stats = vsi_stat->rx_ring_stats;
++ tx_ring_stats = vsi_stat->tx_ring_stats;
+ vsi_stat->tx_ring_stats =
+ krealloc_array(vsi_stat->tx_ring_stats, req_txq,
+ sizeof(*vsi_stat->tx_ring_stats),