Re: [dpdk-dev] [PATCH v2 4/4] mbuf: remove physical address alias

2020-09-18 Thread Thomas Monjalon
18/09/2020 16:43, Kinsella, Ray: > On 17/09/2020 11:41, Thomas Monjalon wrote: > > Remove the deprecated buf_physaddr union field from rte_mbuf. > > It is replaced with buf_iova which is at the same offset. > > > > The single field buf_physaddr in rte_kni_mbuf is also renamed. > > > > This conclu

Re: [dpdk-dev] [PATCH v2 4/4] mbuf: remove physical address alias

2020-09-18 Thread Kinsella, Ray
On 17/09/2020 11:41, Thomas Monjalon wrote: > Remove the deprecated buf_physaddr union field from rte_mbuf. > It is replaced with buf_iova which is at the same offset. > > The single field buf_physaddr in rte_kni_mbuf is also renamed. > > This concludes a 3-year process of semantic change. >

[dpdk-dev] [PATCH v2 4/4] mbuf: remove physical address alias

2020-09-17 Thread Thomas Monjalon
Remove the deprecated buf_physaddr union field from rte_mbuf. It is replaced with buf_iova which is at the same offset. The single field buf_physaddr in rte_kni_mbuf is also renamed. This concludes a 3-year process of semantic change. Signed-off-by: Thomas Monjalon Acked-by: Andrew Rybchenko -