From: Pablo de Lara <pablo.de.lara.guarch@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH v5 1/4] doc: Added new commands in testpmd UG
Date: Mon, 1 Dec 2014 11:40:45 +0000 [thread overview]
Message-ID: <1417434048-12515-2-git-send-email-pablo.de.lara.guarch@intel.com> (raw)
In-Reply-To: <1417434048-12515-1-git-send-email-pablo.de.lara.guarch@intel.com>
Added info in testpmd functions section for the following commands:
- tunnel_filter add
- tunnel_filter rm
- rx_vxlan_port add
- rx_vxlan_port rm
- port stop/start queue
- set port mac address filter (for VF)
- tx_checksum set
- tso set
- tso show
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
---
doc/guides/testpmd_app_ug/testpmd_funcs.rst | 79 +++++++++++++++++++++++++++
1 files changed, 79 insertions(+), 0 deletions(-)
diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
index 5e62ff9..c010577 100644
--- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst
+++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
@@ -150,6 +150,15 @@ For example:
filter on
qinq(extend) off
+show port rss reta
+~~~~~~~~~~~~~~~~~~
+
+Display the rss redirection table entry indicated by masks on port X:
+
+show port (port_id) rss reta (size) (mask0, mask1...)
+
+size is used to indicate the hardware supported reta size
+
show port rss-hash
~~~~~~~~~~~~~~~~~~
@@ -456,6 +465,36 @@ Set the outer VLAN TPID for packet filtering on a port:
rx_vlan set tpid (value) (port_id)
+tunnel_filter add
+~~~~~~~~~~~~~~~~~
+
+Add a tunnel filter on a port:
+
+tunnel_filter add (port_id) (outer_mac) (inner_mac) (ip_addr) (inner_vlan)
+ (tunnel_type) (filter_type) (tenant_id) (queue_id)
+
+tunnel_filter remove
+~~~~~~~~~~~~~~~~~~~~
+
+Remove a tunnel filter on a port:
+
+tunnel_filter rm (port_id) (outer_mac) (inner_mac) (ip_addr) (inner_vlan)
+ (tunnel_type) (filter_type) (tenant_id) (queue_id)
+
+rx_vxlan_port add
+~~~~~~~~~~~~~~~~~
+
+Add an UDP port for VXLAN packet filter on a port:
+
+rx_vxlan_port add (udp_port) (port_id)
+
+rx_vxlan_port remove
+~~~~~~~~~~~~~~~~~~~~
+
+Remove an UDP port for VXLAN packet filter on a port:
+
+rx_vxlan_port rm (udp_port) (port_id)
+
tx_vlan set
~~~~~~~~~~~
@@ -498,6 +537,29 @@ bit 3 - if set insert sctp checksum offload
Check the NIC Datasheet for hardware limits.
+tx_checksum show
+~~~~~~~~~~~~~~~~
+
+Display tx checksum offload configuration:
+
+tx_checksum show (port_id)
+
+tso set
+~~~~~~~
+
+Enable TCP Segmentation Offload in csum forward engine:
+
+tso set (segsize) (port_id)
+
+.. note::
+ Please check the NIC datasheet for HW limits
+
+tso show
+~~~~~~~~
+
+Display the status of TCP Segmentation Offload:
+
+tso show (port_id)
set fwd
~~~~~~~
@@ -635,6 +697,14 @@ Set VF receive/transmit from a port:
set port (port_id) vf (vf_id) (rx|tx) (on|off)
+set port - mac address filter (for VF)
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Add/Remove unicast or multicast MAC addr filter for a VF:
+
+set port (port_id) vf (vf_id) (mac_addr)
+ (exact-mac|exact-mac-vlan|hashmac|hashmac-vlan) (on|off)
+
set port - rx mode(for VF)
~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -1061,6 +1131,15 @@ Close all ports or a specific port:
port close (port_id|all)
+port start/stop queue
+~~~~~~~~~~~~~~~~~~~~~
+
+Start/stop a rx/tx queue on a specific port:
+
+port (port_id) (rxq|txq) (queue_id) (start|stop)
+
+Only take effect when port is started.
+
port config - speed
~~~~~~~~~~~~~~~~~~~
--
1.7.4.1
next prev parent reply other threads:[~2014-12-01 11:41 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-15 19:13 [dpdk-dev] [PATCH 0/4] doc: Updated testpmd UG due to latest changes in the app Pablo de Lara
2014-11-15 19:13 ` [dpdk-dev] [PATCH 1/4] doc: Added new commands in testpmd UG Pablo de Lara
2014-11-15 19:13 ` [dpdk-dev] [PATCH 2/4] doc: Corrected info for tx_checksum set mask function, " Pablo de Lara
2014-11-15 19:19 ` Jayakumar, Muthurajan
2014-11-17 10:39 ` Olivier MATZ
2014-11-17 10:47 ` De Lara Guarch, Pablo
2014-11-26 12:41 ` Thomas Monjalon
2014-11-26 13:26 ` De Lara Guarch, Pablo
2014-11-15 19:13 ` [dpdk-dev] [PATCH 3/4] doc: Moved commands in testpmd UG to match testpmd command help order Pablo de Lara
2014-11-15 19:13 ` [dpdk-dev] [PATCH 4/4] doc: Various document fixes in testpmd UG Pablo de Lara
2014-12-03 13:17 ` Thomas Monjalon
2014-12-03 13:26 ` De Lara Guarch, Pablo
2014-12-03 13:38 ` Thomas Monjalon
2014-12-04 11:27 ` Iremonger, Bernard
2014-11-18 17:04 ` [dpdk-dev] [PATCH v2 0/4] doc: Updated testpmd UG due to latest changes in the app Pablo de Lara
2014-11-18 17:04 ` [dpdk-dev] [PATCH v2 1/4] doc: Added new commands in testpmd UG Pablo de Lara
2014-11-19 13:40 ` Iremonger, Bernard
2014-11-18 17:04 ` [dpdk-dev] [PATCH v2 2/4] doc: Corrected info for tx_checksum set mask function, " Pablo de Lara
2014-11-19 13:42 ` Iremonger, Bernard
2014-11-18 17:04 ` [dpdk-dev] [PATCH v2 3/4] doc: Moved commands in testpmd UG to match testpmd command help order Pablo de Lara
2014-11-19 13:48 ` Iremonger, Bernard
2014-11-18 17:04 ` [dpdk-dev] [PATCH v2 4/4] doc: Various document fixes in testpmd UG Pablo de Lara
2014-11-19 13:50 ` Iremonger, Bernard
2014-11-27 16:49 ` [dpdk-dev] [PATCH v3 0/4] new sample app UG for VM power management Pablo de Lara
2014-11-27 16:49 ` [dpdk-dev] [PATCH v3 1/4] doc: Added new commands in testpmd UG Pablo de Lara
2014-11-27 16:49 ` [dpdk-dev] [PATCH v3 2/4] doc: Corrected info for tx_checksum set mask function, " Pablo de Lara
2014-11-27 16:49 ` [dpdk-dev] [PATCH v3 3/4] doc: Moved commands in testpmd UG to match testpmd command help order Pablo de Lara
2014-11-27 16:49 ` [dpdk-dev] [PATCH v3 4/4] doc: Various document fixes in testpmd UG Pablo de Lara
2014-11-27 16:52 ` [dpdk-dev] [PATCH v3 0/4] new sample app UG for VM power management De Lara Guarch, Pablo
2014-11-27 19:47 ` [dpdk-dev] [PATCH v4 0/4] Updated testpmd UG due to latest changes in the app Pablo de Lara
2014-11-27 19:47 ` [dpdk-dev] [PATCH v4 1/4] doc: Added new commands in testpmd UG Pablo de Lara
2014-11-27 19:47 ` [dpdk-dev] [PATCH v4 2/4] doc: Corrected info for tx_checksum set mask function, " Pablo de Lara
2014-11-27 19:47 ` [dpdk-dev] [PATCH v4 3/4] doc: Moved commands in testpmd UG to match testpmd command help order Pablo de Lara
2014-11-27 19:47 ` [dpdk-dev] [PATCH v4 4/4] doc: Various document fixes in testpmd UG Pablo de Lara
2014-12-01 11:40 ` [dpdk-dev] [PATCH v5 0/4] Updated testpmd UG due to latest changes in the app Pablo de Lara
2014-12-01 11:40 ` Pablo de Lara [this message]
2014-12-01 12:32 ` [dpdk-dev] [PATCH v5 1/4] doc: Added new commands in testpmd UG Iremonger, Bernard
2014-12-01 11:40 ` [dpdk-dev] [PATCH v5 2/4] doc: Corrected info for tx_checksum set mask function, " Pablo de Lara
2014-12-01 11:40 ` [dpdk-dev] [PATCH v5 3/4] doc: Moved commands in testpmd UG to match testpmd command help order Pablo de Lara
2014-12-01 12:36 ` Iremonger, Bernard
2014-12-01 11:40 ` [dpdk-dev] [PATCH v5 4/4] doc: Various document fixes in testpmd UG Pablo de Lara
2014-12-01 12:37 ` Iremonger, Bernard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1417434048-12515-2-git-send-email-pablo.de.lara.guarch@intel.com \
--to=pablo.de.lara.guarch@intel.com \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).