From: Greg Kroah-Hartman Date: Mon, 8 Apr 2024 06:56:11 +0000 (+0200) Subject: 6.6-stable patches X-Git-Tag: v5.15.154~64 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=be75d7b99d1dc58117bb57289b84174a48958f7f;p=thirdparty%2Fkernel%2Fstable-queue.git 6.6-stable patches added patches: ice-fix-typo-in-assignment.patch --- diff --git a/queue-6.6/ice-fix-typo-in-assignment.patch b/queue-6.6/ice-fix-typo-in-assignment.patch new file mode 100644 index 00000000000..d035fdaed54 --- /dev/null +++ b/queue-6.6/ice-fix-typo-in-assignment.patch @@ -0,0 +1,33 @@ +From 6c5b6ca7642f2992502a22dbd8b80927de174b67 Mon Sep 17 00:00:00 2001 +From: Jesse Brandeburg +Date: Mon, 4 Mar 2024 16:37:07 -0800 +Subject: ice: fix typo in assignment + +From: Jesse Brandeburg + +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 +Reviewed-by: Simon Horman +Reviewed-by: Paul Menzel +Signed-off-by: Tony Nguyen +Signed-off-by: Greg Kroah-Hartman +--- + 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), diff --git a/queue-6.6/series b/queue-6.6/series index a2f8e7f028b..4afd1447bce 100644 --- a/queue-6.6/series +++ b/queue-6.6/series @@ -198,3 +198,4 @@ asoc-sof-amd-fix-for-false-dsp-interrupts.patch sunrpc-fix-a-slow-server-side-memory-leak-with-rpc-o.patch riscv-disable-preemption-when-using-patch_map.patch nfsd-hold-a-lighter-weight-client-reference-over-cb_.patch +ice-fix-typo-in-assignment.patch