Re: [PATCH] mbuf: delete dynamic fields copy in hdr copy

2022-01-26 Thread Olivier Matz
Hi, On Tue, Jan 11, 2022 at 05:45:49PM +0100, Thomas Monjalon wrote: > 14/12/2021 08:56, Gaoxiang Liu: > > Because dynamic fields are registered by the DPDK application, > > so it is up to the application to decide whether to copy the value of > > dynamic fields. > > So delete dynamic fields copy

Re: [PATCH] mbuf: delete dynamic fields copy in hdr copy

2022-01-11 Thread Thomas Monjalon
14/12/2021 08:56, Gaoxiang Liu: > Because dynamic fields are registered by the DPDK application, > so it is up to the application to decide whether to copy the value of > dynamic fields. > So delete dynamic fields copy in __rte_pktmbuf_copy_hdr. > It's more flexible for the DPDK application, > and

[PATCH] mbuf: delete dynamic fields copy in hdr copy

2021-12-13 Thread Gaoxiang Liu
Because dynamic fields are registered by the DPDK application, so it is up to the application to decide whether to copy the value of dynamic fields. So delete dynamic fields copy in __rte_pktmbuf_copy_hdr. It's more flexible for the DPDK application, and is useful for improving performance. Fixes: