Re: [dpdk-dev] [PATCH v7 1/6] ethdev: introduce Rx buffer split

2020-10-15 Thread Ajit Khaparde
On Thu, Oct 15, 2020 at 1:33 PM Thomas Monjalon wrote: > > 15/10/2020 22:17, Viacheslav Ovsiienko: > > /** > > + * Ethernet device Rx buffer segmentation capabilities. > > + */ > > +struct rte_eth_rxseg_capa { > > + uint16_t max_seg; /**< Maximum amount of segments to split. */ > > + uint

Re: [dpdk-dev] [PATCH v7 1/6] ethdev: introduce Rx buffer split

2020-10-15 Thread Thomas Monjalon
15/10/2020 22:17, Viacheslav Ovsiienko: > /** > + * Ethernet device Rx buffer segmentation capabilities. > + */ > +struct rte_eth_rxseg_capa { > + uint16_t max_seg; /**< Maximum amount of segments to split. */ > + uint8_t multi_pools; /**< Supports receiving to multiple pools.*/ > + ui

Re: [dpdk-dev] [PATCH v7 1/6] ethdev: introduce Rx buffer split

2020-10-15 Thread Jerin Jacob
On Fri, Oct 16, 2020 at 1:47 AM Viacheslav Ovsiienko wrote: > > The DPDK datapath in the transmit direction is very flexible. > An application can build the multi-segment packet and manages > almost all data aspects - the memory pools where segments > are allocated from, the segment lengths, the m