This is a note to let you know that I've just added the patch titled ice: fix typo in assignment to the 6.6-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: ice-fix-typo-in-assignment.patch and it can be found in the queue-6.6 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 6c5b6ca7642f2992502a22dbd8b80927de174b67 Mon Sep 17 00:00:00 2001 From: Jesse Brandeburg <jesse.brandeburg@xxxxxxxxx> Date: Mon, 4 Mar 2024 16:37:07 -0800 Subject: ice: fix typo in assignment From: Jesse Brandeburg <jesse.brandeburg@xxxxxxxxx> 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@xxxxxxxxx> Reviewed-by: Simon Horman <horms@xxxxxxxxxx> Reviewed-by: Paul Menzel <pmenzel@xxxxxxxxxxxxx> Signed-off-by: Tony Nguyen <anthony.l.nguyen@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- 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), Patches currently in stable-queue which might be from jesse.brandeburg@xxxxxxxxx are queue-6.6/intel-add-bit-macro-includes-where-needed.patch queue-6.6/i40e-remove-back-pointer-from-i40e_hw-structure.patch queue-6.6/virtchnl-add-header-dependencies.patch queue-6.6/ice-fix-memory-corruption-bug-with-suspend-and-rebui.patch queue-6.6/i40e-simplify-memory-allocation-functions.patch queue-6.6/i40e-remove-circular-header-dependencies-and-fix-hea.patch queue-6.6/ice-fix-typo-in-assignment.patch queue-6.6/i40e-refactor-i40e_mdio_clause-macros.patch queue-6.6/i40e-split-i40e_osdep.h.patch queue-6.6/i40e-enforce-software-interrupt-during-busy-poll-exi.patch queue-6.6/i40e-move-memory-allocation-structures-to-i40e_alloc.patch queue-6.6/intel-legacy-field-get-conversion.patch