[PATCH 16/16] net/dpaa2: fix bitmask truncation
Hemant Agrawal
hemant.agrawal at oss.nxp.com
Mon Nov 18 08:04:45 CET 2024
Acked-by: Hemant Agrawal <hemant.agrawal at nxp.com>
On 15-11-2024 11:35, Stephen Hemminger wrote:
> The dqrr_held mask is 64 bit but updates were getting truncated
> because 1 is of type int (32 bit) and the result shift of int is of
> type int (32 bit); therefore any value >= 32 would get truncated.
>
> Link: https://pvs-studio.com/en/blog/posts/cpp/1183/
>
> Fixes: 2d3788631862 ("net/dpaa2: support atomic queues")
> Cc: nipun.gupta at nxp.com
> Cc: stable at dpdk.org
>
> Signed-off-by: Stephen Hemminger <stephen at networkplumber.org>
> ---
> drivers/net/dpaa2/dpaa2_rxtx.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/dpaa2/dpaa2_rxtx.c b/drivers/net/dpaa2/dpaa2_rxtx.c
> index e3b6c7e460..e253bccecd 100644
> --- a/drivers/net/dpaa2/dpaa2_rxtx.c
> +++ b/drivers/net/dpaa2/dpaa2_rxtx.c
> @@ -933,7 +933,7 @@ dpaa2_dev_process_atomic_event(struct qbman_swp *swp __rte_unused,
> dqrr_index = qbman_get_dqrr_idx(dq);
> *dpaa2_seqn(ev->mbuf) = dqrr_index + 1;
> DPAA2_PER_LCORE_DQRR_SIZE++;
> - DPAA2_PER_LCORE_DQRR_HELD |= 1 << dqrr_index;
> + DPAA2_PER_LCORE_DQRR_HELD |= UINT64_C(1) << dqrr_index;
> DPAA2_PER_LCORE_DQRR_MBUF(dqrr_index) = ev->mbuf;
> }
>
> @@ -1317,7 +1317,7 @@ dpaa2_dev_tx(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
> flags[loop] = QBMAN_ENQUEUE_FLAG_DCA |
> dqrr_index;
> DPAA2_PER_LCORE_DQRR_SIZE--;
> - DPAA2_PER_LCORE_DQRR_HELD &= ~(1 << dqrr_index);
> + DPAA2_PER_LCORE_DQRR_HELD &= ~(UINT64_C(1) << dqrr_index);
> *dpaa2_seqn(*bufs) = DPAA2_INVALID_MBUF_SEQN;
> }
>
> @@ -1575,7 +1575,7 @@ dpaa2_set_enqueue_descriptor(struct dpaa2_queue *dpaa2_q,
> dq_idx = *dpaa2_seqn(m) - 1;
> qbman_eq_desc_set_dca(eqdesc, 1, dq_idx, 0);
> DPAA2_PER_LCORE_DQRR_SIZE--;
> - DPAA2_PER_LCORE_DQRR_HELD &= ~(1 << dq_idx);
> + DPAA2_PER_LCORE_DQRR_HELD &= ~(UINT64_C(1) << dq_idx);
> }
> *dpaa2_seqn(m) = DPAA2_INVALID_MBUF_SEQN;
> }
More information about the stable
mailing list