From: Jim Harris Date: Wed, 1 Oct 2014 22:00:21 +0000 (-0700) Subject: i40e: fix Tx descriptors reset X-Git-Tag: spdx-start~10318 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=f7eda85b9cebb7cf45a3426d4b9aaec874774b9f;p=dpdk.git i40e: fix Tx descriptors reset Fix the descriptor initialization loop, so that it initializes the i40e_tx_desc::cmd_type_offset_bsz for the correct index into the tx_ring array. Previously it would use the index once to initialize the txd local variable, then again when setting cmd_type_offset_bsz. Signed-off-by: Jim Harris Acked-by: Helin Zhang --- diff --git a/lib/librte_pmd_i40e/i40e_rxtx.c b/lib/librte_pmd_i40e/i40e_rxtx.c index 7c5b6a8d33..2b536778bf 100644 --- a/lib/librte_pmd_i40e/i40e_rxtx.c +++ b/lib/librte_pmd_i40e/i40e_rxtx.c @@ -2072,7 +2072,7 @@ i40e_reset_tx_queue(struct i40e_tx_queue *txq) for (i = 0; i < txq->nb_tx_desc; i++) { volatile struct i40e_tx_desc *txd = &txq->tx_ring[i]; - txd[i].cmd_type_offset_bsz = + txd->cmd_type_offset_bsz = rte_cpu_to_le_64(I40E_TX_DESC_DTYPE_DESC_DONE); txe[i].mbuf = NULL; txe[i].last_id = i;