doc: announce GENEVE header options support

Message ID 1596459200-30689-1-git-send-email-viacheslavo@mellanox.com (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series doc: announce GENEVE header options support |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/travis-robot success Travis build: passed

Commit Message

Slava Ovsiienko Aug. 3, 2020, 12:53 p.m. UTC
  In order to add support of the GENEVE header variable length
options the rte_flow_item_geneve_option item will be introduced:

struct rte_flow_item_geneve_option {
    rte_be16_t option_class;
    uint8_t option_type:7;
    uint8_t critical:1;
    uint8_t length:5;
    uint8_t rsvd0:3;
    uint8_t data[];
};

This option (one or multiple) must follow the rte_flow_item_geneve
item and provide the pattern to match with GENEVE header option.

Signed-off-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
---
 doc/guides/rel_notes/deprecation.rst | 4 ++++
 1 file changed, 4 insertions(+)
  

Patch

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index cd700ae..b6bdb83 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -109,6 +109,10 @@  Deprecation Notices
   Existing ``rte_eth_rx_descriptor_status`` and ``rte_eth_tx_descriptor_status``
   APIs can be used as replacement.
 
+* ethdev: in order to provide support of the GENEVE header variable length
+  options in rte_flow API the rte_flow_item_geneve_option item will be
+  introduced.
+
 * ethdev: Some internal APIs for driver usage are exported in the .map file.
   Now DPDK has ``__rte_internal`` marker so we can mark internal APIs and move
   them to the INTERNAL block in .map. Although these APIs are internal it will