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 <[email protected]> Reviewed-by: Simon Horman <[email protected]> Reviewed-by: Paul Menzel <[email protected]> Signed-off-by: Tony Nguyen <[email protected]>
1 parent 9224fc8 commit 6c5b6ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)