From: Gregory Etelson Date: Mon, 2 Aug 2021 10:38:34 +0000 (+0300) Subject: net: announce changes in IPv4 header access X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=f7383e7c7ec13b6ef4f3352969568739bb299056;p=dpdk.git net: announce changes in IPv4 header access Announce changes to add 2 unions. The first union will provide integral and bits access to version and IHL. The second union will provide integral and bits access to fragment flags and offset. Signed-off-by: Gregory Etelson Acked-by: Andrew Rybchenko Acked-by: Viacheslav Ovsiienko Acked-by: Akhil Goyal Acked-by: Ajit Khaparde --- diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 26a73f3f65..1d58ef3e9c 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -150,6 +150,12 @@ Deprecation Notices * net: ``s_addr`` and ``d_addr`` fields of ``rte_ether_hdr`` structure will be renamed in DPDK 21.11 to avoid conflict with Windows Sockets headers. +* net: The structure ``rte_ipv4_hdr`` will have two unions. + The first union is for existing ``version_ihl`` byte + and new bitfield for version and IHL. + The second union is for existing ``fragment_offset`` + and new bitfield for fragment flags and offset. + * compressdev: ``min`` and ``max`` fields of ``rte_param_log2_range`` structure will be renamed in DPDK 21.11 to avoid conflict with Windows Sockets headers.