Re: [dpdk-dev] [PATCH v3 1/2] net: rename Ethernet header fields

2021-10-08 Thread Thomas Monjalon
08/10/2021 00:07, Dmitry Kozlyuk: > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -164,8 +164,13 @@ Deprecation Notices >consistent with existing outer header checksum status flag naming, which >should help in reducing confusion about its usage

[dpdk-dev] [PATCH v3 1/2] net: rename Ethernet header fields

2021-10-07 Thread Dmitry Kozlyuk
Definition of `rte_ether_addr` structure used a workaround allowing DPDK and Windows SDK headers to be used in the same file, because Windows SDK defines `s_addr` as a macro. Rename `s_addr` to `src_addr` and `d_addr` to `dst_addr` to avoid the conflict and remove the workaround. Deprecation notice