doc: add bonding hotplug example in testpmd guide
authorBernard Iremonger <bernard.iremonger@intel.com>
Mon, 27 Jul 2015 15:54:37 +0000 (16:54 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 27 Jul 2015 17:20:45 +0000 (19:20 +0200)
Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
doc/guides/testpmd_app_ug/testpmd_funcs.rst

index 4652962..5272bf4 100644 (file)
@@ -909,6 +909,19 @@ For example, to attach a port created by pcap PMD.
 In this case, identifier is "eth_pcap0,iface=eth0".
 This identifier format is the same as "--vdev" format of DPDK applications.
 
+For example, to re-attach a bonded port which has been previously detached,
+the mode and slave parameters must be given.
+
+.. code-block:: console
+
+    testpmd> port attach eth_bond_testpmd_0,mode=0,slave=1
+    Attaching a new port...
+    EAL: Initializing pmd_bond for eth_bond_testpmd_0
+    EAL: Create bonded device eth_bond_testpmd_0 on port 0 in mode 0 on socket 0.
+    Port 0 is attached. Now total ports is 1
+    Done
+
+
 port detach
 ~~~~~~~~~~~