]> git.droids-corp.org - dpdk.git/blobdiff - doc/guides/sample_app_ug/skeleton.rst
ethdev: change promiscuous mode controllers to return errors
[dpdk.git] / doc / guides / sample_app_ug / skeleton.rst
index 59ca511d33f548eace4694f519fdea770546f432..1d0a2760d40ecad3a772f4a10fdbeafab202e27d 100644 (file)
@@ -149,7 +149,9 @@ Forwarding application is shown below:
             return retval;
 
         /* 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;
     }
@@ -177,7 +179,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 Lcores Main