Re: [dpdk-dev] [PATCH v3 3/7] ethdev: copy ethdev 'fast' API into separate structure

2021-10-03 Thread Pavan Nikhilesh Bhagavatula
> >> >Copy public function pointers (rx_pkt_burst(), etc.) and related >> >pointers to internal data from rte_eth_dev structure into a >> >separate flat array. That array will remain in a public header. >> >The intention here is to make rte_eth_dev and related structures >> >internal. >> >That shou

Re: [dpdk-dev] [PATCH v3 3/7] ethdev: copy ethdev 'fast' API into separate structure

2021-10-03 Thread Ananyev, Konstantin
> >Copy public function pointers (rx_pkt_burst(), etc.) and related > >pointers to internal data from rte_eth_dev structure into a > >separate flat array. That array will remain in a public header. > >The intention here is to make rte_eth_dev and related structures > >internal. > >That should all

Re: [dpdk-dev] [PATCH v3 3/7] ethdev: copy ethdev 'fast' API into separate structure

2021-10-01 Thread Pavan Nikhilesh Bhagavatula
>Copy public function pointers (rx_pkt_burst(), etc.) and related >pointers to internal data from rte_eth_dev structure into a >separate flat array. That array will remain in a public header. >The intention here is to make rte_eth_dev and related structures >internal. >That should allow future poss

[dpdk-dev] [PATCH v3 3/7] ethdev: copy ethdev 'fast' API into separate structure

2021-10-01 Thread Konstantin Ananyev
Copy public function pointers (rx_pkt_burst(), etc.) and related pointers to internal data from rte_eth_dev structure into a separate flat array. That array will remain in a public header. The intention here is to make rte_eth_dev and related structures internal. That should allow future possible c