Skip to content

Commit 6c5b6ca

Browse files
jbrandebanguy11
authored andcommitted
ice: fix typo in assignment
Fix an obviously incorrect assignment, created with a typo or cut-n-paste error. Fixes: 5995ef8 ("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>
1 parent 9224fc8 commit 6c5b6ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/net/ethernet/intel/ice/ice_lib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3192,7 +3192,7 @@ ice_vsi_realloc_stat_arrays(struct ice_vsi *vsi)
31923192
}
31933193
}
31943194

3195-
tx_ring_stats = vsi_stat->rx_ring_stats;
3195+
tx_ring_stats = vsi_stat->tx_ring_stats;
31963196
vsi_stat->tx_ring_stats =
31973197
krealloc_array(vsi_stat->tx_ring_stats, req_txq,
31983198
sizeof(*vsi_stat->tx_ring_stats),

0 commit comments

Comments
 (0)