[dpdk-dev] doc/tespmd: fix flow director examples

Message ID 1465289333-15851-1-git-send-email-mauricio.vasquezbernal@studenti.polito.it (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers

Commit Message

Mauricio Vasquez B June 7, 2016, 8:48 a.m. UTC
  A previous patch modified the CLIs witout updating the examples.

Fixes: 53b2bb9b7ea7 ("app/testpmd: new flow director commands")

Signed-off-by: Mauricio Vasquez B <mauricio.vasquezbernal@studenti.polito.it>
---
 doc/guides/testpmd_app_ug/testpmd_funcs.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
  

Comments

Wenzhuo Lu June 8, 2016, 12:39 a.m. UTC | #1
Hi Mauricio,

> -----Original Message-----
> From: Mauricio Vasquez B [mailto:mauricio.vasquezbernal@studenti.polito.it]
> Sent: Tuesday, June 7, 2016 4:49 PM
> To: De Lara Guarch, Pablo
> Cc: Lu, Wenzhuo; dev@dpdk.org
> Subject: [PATCH] doc/tespmd: fix flow director examples
> 
> A previous patch modified the CLIs witout updating the examples.
> 
> Fixes: 53b2bb9b7ea7 ("app/testpmd: new flow director commands")
> 
> Signed-off-by: Mauricio Vasquez B <mauricio.vasquezbernal@studenti.polito.it>
Acked-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
Thanks for handling this problem.
  
Thomas Monjalon June 8, 2016, 4:44 p.m. UTC | #2
2016-06-08 00:39, Lu, Wenzhuo:
> From: Mauricio Vasquez B [mailto:mauricio.vasquezbernal@studenti.polito.it]
> > A previous patch modified the CLIs witout updating the examples.
> > 
> > Fixes: 53b2bb9b7ea7 ("app/testpmd: new flow director commands")
> > 
> > Signed-off-by: Mauricio Vasquez B <mauricio.vasquezbernal@studenti.polito.it>
> Acked-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
> Thanks for handling this problem.

Applied, thanks
  

Patch

diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
index aed5e47..a676c6c 100644
--- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst
+++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
@@ -1782,13 +1782,13 @@  Different NICs may have different capabilities, command show port fdir (port_id)
 
 For example, to add an ipv4-udp flow type filter::
 
-   testpmd> flow_director_filter 0 add flow ipv4-udp src 2.2.2.3 32 \
+   testpmd> flow_director_filter 0 mode IP add flow ipv4-udp src 2.2.2.3 32 \
             dst 2.2.2.5 33 tos 2 ttl 40 vlan 0x1 flexbytes (0x88,0x48) \
             fwd pf queue 1 fd_id 1
 
 For example, add an ipv4-other flow type filter::
 
-   testpmd> flow_director_filter 0 add flow ipv4-other src 2.2.2.3 \
+   testpmd> flow_director_filter 0 mode IP add flow ipv4-other src 2.2.2.3 \
              dst 2.2.2.5 tos 2 proto 20 ttl 40 vlan 0x1 \
              flexbytes (0x88,0x48) fwd pf queue 1 fd_id 1
 
@@ -1821,7 +1821,7 @@  Set flow director's input masks::
 
 Example, to set flow director mask on port 0::
 
-   testpmd> flow_director_mask 0 vlan 0xefff \
+   testpmd> flow_director_mask 0 mode IP vlan 0xefff \
             src_mask 255.255.255.255 \
                 FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF 0xFFFF \
             dst_mask 255.255.255.255 \