]> git.droids-corp.org - dpdk.git/blobdiff - doc/guides/sample_app_ug/flow_classify.rst
ethdev: change promiscuous mode controllers to return errors
[dpdk.git] / doc / guides / sample_app_ug / flow_classify.rst
index 96a5c66d0ff0e4f25361b4aa98b6a7deb32ae0a6..7c2b6dcf8349f3be8a54a715a2fb05a71c1fbd6f 100644 (file)
@@ -315,7 +315,9 @@ Forwarding application is shown below:
                addr.addr_bytes[4], addr.addr_bytes[5]);
 
         /* Enable RX in promiscuous mode for the Ethernet device. */
-        rte_eth_promiscuous_enable(port);
+        retval = rte_eth_promiscuous_enable(port);
+        if (retval != 0)
+                return retval;
 
         return 0;
     }
@@ -343,7 +345,7 @@ Finally the RX port is set in promiscuous mode:
 
 .. code-block:: c
 
-    rte_eth_promiscuous_enable(port);
+    retval = rte_eth_promiscuous_enable(port);
 
 The Add Rules function
 ~~~~~~~~~~~~~~~~~~~~~~