RE: [PATCH v2 2/2] ethdev: remove callback checks from fast path

2025-06-16 Thread Morten Brørup
> From: Sunil Kumar Kori [mailto:sk...@marvell.com] > Sent: Monday, 16 June 2025 10.36 > > > > > From: Sunil Kumar Kori > > > > Sent: Monday, 12 May 2025 17.07 > > > > > > > > rte_eth_fp_ops contains ops for fast path APIs. Each API validates > > > > availability of callback and then invoke it. >

RE: [PATCH v2 2/2] ethdev: remove callback checks from fast path

2025-06-16 Thread Sunil Kumar Kori
> > > From: Sunil Kumar Kori > > > Sent: Monday, 12 May 2025 17.07 > > > > > > rte_eth_fp_ops contains ops for fast path APIs. Each API validates > > > availability of callback and then invoke it. > > > These checks impact data path performace. > > > > Picking up the discussion from another thread

RE: [PATCH v2 2/2] ethdev: remove callback checks from fast path

2025-06-09 Thread Sunil Kumar Kori
> > From: Sunil Kumar Kori > > Sent: Monday, 12 May 2025 17.07 > > > > rte_eth_fp_ops contains ops for fast path APIs. Each API validates > > availability of callback and then invoke it. > > These checks impact data path performace. > > Picking up the discussion from another thread [1]: > > > Fr

RE: [PATCH v2 2/2] ethdev: remove callback checks from fast path

2025-05-28 Thread Morten Brørup
> From: Sunil Kumar Kori > Sent: Monday, 12 May 2025 17.07 > > rte_eth_fp_ops contains ops for fast path APIs. Each API > validates availability of callback and then invoke it. > These checks impact data path performace. Picking up the discussion from another thread [1]: > From: Konstantin Anan

RE: [PATCH v2 2/2] ethdev: remove callback checks from fast path

2025-05-12 Thread Morten Brørup
> From: Sunil Kumar Kori > Sent: Monday, 12 May 2025 17.07 > > rte_eth_fp_ops contains ops for fast path APIs. Each API > validates availability of callback and then invoke it. > These checks impact data path performace. > > Hence removing these NULL checks instead using dummy > callbacks. > >

[PATCH v2 2/2] ethdev: remove callback checks from fast path

2025-05-12 Thread skori
From: Sunil Kumar Kori rte_eth_fp_ops contains ops for fast path APIs. Each API validates availability of callback and then invoke it. These checks impact data path performace. Hence removing these NULL checks instead using dummy callbacks. Signed-off-by: Sunil Kumar Kori --- lib/ethdev/ethde