[dpdk-dev,v2,5/5] doc: commands changed in testpmd_funcs for flex filter
Commit Message
document of new command:
- flex_filter (add|del) (port_id) len (len_value) bytes (bytes_value)
mask (mask_value) priority (prio_value) queue (queue_id)
Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>
---
doc/guides/testpmd_app_ug/testpmd_funcs.rst | 56 ++++++-----------------------
1 file changed, 10 insertions(+), 46 deletions(-)
@@ -1595,15 +1595,14 @@ Example:
syn filter: on, priority: high, queue: 3
-add_flex_filter
+flex_filter
~~~~~~~~~~~~~~~
-Add a Flex filter,
-which recognizes any arbitrary pattern within the first 128 bytes of the packet
+By flex filter, packets can be recognized by any arbitrary pattern within the first 128 bytes of the packet
and routes packets into one of the receive queues.
-add_flex_filter (port_id) len (len_value) bytes (bytes_string) mask (mask_value)
-priority (prio_value) queue (queue_id) index (idx)
+flex_filter (add|del) (port_id) len (len_value) bytes (bytes_value)
+mask (mask_value) priority (prio_value) queue (queue_id)
The available information parameters are:
@@ -1611,55 +1610,20 @@ The available information parameters are:
* len_value: filter length in byte, no greater than 128.
-* bytes_string: a sting in format of octal, means the value the flex filter need to match.
+* bytes_value: a sting in format of octal, means the value the flex filter need to match.
-* mask_value: a sting in format of octal, bit 1 means corresponding byte in DWORD participates in the match.
+* mask_value: a sting in format of octal, bit 1 means corresponding byte participates in the match.
* prio_value: the priority of this filter.
* queue_id: The receive queue associated with this Flex filter.
-* index: the index of this Flex filter
-
Example:
.. code-block:: console
- testpmd> add_flex_filter 0 len 16 bytes 0x00000000000000000000000008060000 mask 000C priority 3 queue 3 index 0
-
-Assign a packet whose 13th and 14th bytes are 0x0806 to queue 3.
-
-remove_flex_filter
-~~~~~~~~~~~~~~~~~~
-
-Remove a Flex filter
-
-remove_flex_filter (port_id) index (idx)
+ testpmd> flex_filter 0 add len 16 bytes 0x00000000000000000000000008060000
+ mask 000C priority 3 queue 3
-get_flex_filter
-~~~~~~~~~~~~~~~
-
-Get and display a Flex filter
-
-get_flex_filter (port_id) index (idx)
-
-Example:
-
-.. code-block:: console
-
- testpmd> get_flex_filter 0 index 0
-
- filter[0]:
-
- length: 16
-
- dword[]: 0x00000000 00000000 00000000 08060000 00000000 00000000 00000000
- 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
- 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
- 00000000 00000000 00000000 00000000 00000000 00000000 00000000
-
- mask[]:
- 0b0000000000001100000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000
-
- priority: 3 queue: 3
+ testpmd> flex_filter 0 del len 16 bytes 0x00000000000000000000000008060000
+ mask 000C priority 3 queue 3