> -----Original Message----- > From: Stephen Hemminger <step...@networkplumber.org> > Sent: 27 December 2021 23:32 > To: Nipun Gupta <nipun.gu...@nxp.com> > Cc: dev@dpdk.org; tho...@monjalon.net; ferruh.yi...@intel.com; Hemant > Agrawal <hemant.agra...@nxp.com>; Jun Yang <jun.y...@nxp.com> > Subject: Re: [PATCH v2 06/16] net/dpaa2: support multiple txqs en-queue for > ordered > > On Mon, 27 Dec 2021 21:46:35 +0530 > nipun.gu...@nxp.com wrote: > > > @@ -1003,16 +1003,20 @@ dpaa2_eventdev_txa_enqueue(void *port, > > struct rte_event ev[], > > uint16_t nb_events) > > { > > - struct rte_mbuf *m = (struct rte_mbuf *)ev[0].mbuf; > > + void *txq[32]; > > + struct rte_mbuf *m[32]; > > You are assuming nb_events <= 32. > Why not size the array based on nb_events. Agree. Actually I will use DPAA2_EVENT_MAX_PORT_ENQUEUE_DEPTH here. > > > uint8_t qid, i; > > > > RTE_SET_USED(port); > > > > for (i = 0; i < nb_events; i++) { > > - qid = rte_event_eth_tx_adapter_txq_get(m); > > - rte_eth_tx_burst(m->port, qid, &m, 1); > > + m[i] = (struct rte_mbuf *)ev[i].mbuf; > > Why the cast? it is already the right type. Will remove the cast. Thanks, Nipun > > > + qid = rte_event_eth_tx_adapter_txq_get(m[i]); > > + txq[i] = rte_eth_devices[m[i]->port].data->tx_queues[qid];
- [PATCH 16/17] net/pfe: remove setting unused value nipun . gupta
- [PATCH 17/17] net/pfe: fix for 32 bit and PPC compilatio... nipun . gupta
- [PATCH v2 00/16] features and fixes on NXP eth devices nipun . gupta
- [PATCH v2 01/16] bus/fslmc: update MC to 10.29 nipun . gupta
- [PATCH v2 02/16] bus/fslmc: use dmb oshst for synch... nipun . gupta
- [PATCH v2 03/16] net/dpaa2: warn user in case of hi... nipun . gupta
- [PATCH v2 04/16] net/dpaa2: fix unregistering inter... nipun . gupta
- [PATCH v2 05/16] net/dpaa2: fix timestamping for IE... nipun . gupta
- [PATCH v2 06/16] net/dpaa2: support multiple txqs e... nipun . gupta
- Re: [PATCH v2 06/16] net/dpaa2: support multipl... Stephen Hemminger
- RE: [PATCH v2 06/16] net/dpaa2: support mul... Nipun Gupta
- RE: [PATCH v2 06/16] net/dpaa2: support... Nipun Gupta
- [PATCH v2 08/16] net/dpaa2: secondary process handl... nipun . gupta
- [PATCH v2 07/16] net/dpaa2: add support for level 2... nipun . gupta
- [PATCH v2 09/16] bus/fslmc: add and scan dprc devic... nipun . gupta
- [PATCH v2 10/16] net/dpaa2: support recycle loopbac... nipun . gupta
- [PATCH v2 11/16] net/dpaa: check status before conf... nipun . gupta
- [PATCH v2 12/16] net/dpaa: enable checksum for shar... nipun . gupta
- [PATCH v2 13/16] net/enetc: add support for VFs nipun . gupta
- [PATCH v2 14/16] net/pfe: disable HW CRC stripping nipun . gupta
- Re: [PATCH v2 14/16] net/pfe: disable HW CRC st... Stephen Hemminger