diff mbox

[ovs-dev,4/4] Modify QoS configure documents for ovs-dpdk

Message ID 1500539929-24116-5-git-send-email-zhaozhanxu@163.com
State Superseded
Headers show

Commit Message

zhaozhanxu July 20, 2017, 8:38 a.m. UTC
Signed-off-by: zhaozhanxu <zhaozhanxu@163.com>
---
 Documentation/howto/dpdk.rst | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/Documentation/howto/dpdk.rst b/Documentation/howto/dpdk.rst
index af01d3e..bb60f83 100644
--- a/Documentation/howto/dpdk.rst
+++ b/Documentation/howto/dpdk.rst
@@ -126,8 +126,16 @@  of size 64 bytes, the following command would limit the egress transmission
 rate of the port to ~1,000,000 packets per second::
 
     $ ovs-vsctl set port vhost-user0 qos=@newqos -- \
-        --id=@newqos create qos type=egress-policer other-config:cir=46000000 \
-        other-config:cbs=2048`
+        --id=@newqos create qos type=egress-policer \
+        other-config:cir=46000000 other-config:cbs=2048` \
+        queues:123=@q123 queues:234=@q234 -- \
+        --id=@q0 create queue other-config:cir=12800000 other-config:cbs=2048 -- \
+        --id=@q2 create queue other-config:cir=25600000 other-config:cbs=2048`
+
+To direct packets to queues, run::
+
+    $ ovs-ofctl add-flow br0 in_port=5,actions=set_queue:123,normal
+    $ ovs-ofctl add-flow br0 in_port=6,actions=set_queue:234,normal
 
 To examine the QoS configuration of the port, run::