]> git.droids-corp.org - dpdk.git/commitdiff
examples: take promiscuous mode switch result into account
authorIvan Ilchenko <ivan.ilchenko@oktetlabs.ru>
Sat, 14 Sep 2019 11:37:33 +0000 (12:37 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Mon, 7 Oct 2019 13:00:54 +0000 (15:00 +0200)
rte_eth_promiscuous_enable()/rte_eth_promiscuous_disable() return
value was changed from void to int, so this patch modify usage
of these functions across examples according to new return type.

Signed-off-by: Ivan Ilchenko <ivan.ilchenko@oktetlabs.ru>
Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
35 files changed:
examples/bbdev_app/main.c
examples/bond/main.c
examples/distributor/main.c
examples/eventdev_pipeline/main.c
examples/exception_path/main.c
examples/flow_classify/flow_classify.c
examples/flow_filtering/main.c
examples/ip_fragmentation/main.c
examples/ip_pipeline/link.c
examples/ip_reassembly/main.c
examples/ipsec-secgw/ipsec-secgw.c
examples/l2fwd-cat/l2fwd-cat.c
examples/l2fwd-crypto/main.c
examples/l2fwd-jobstats/main.c
examples/l2fwd-keepalive/main.c
examples/l2fwd/main.c
examples/l3fwd-acl/main.c
examples/l3fwd-power/main.c
examples/l3fwd/main.c
examples/link_status_interrupt/main.c
examples/load_balancer/init.c
examples/multi_process/client_server_mp/mp_server/init.c
examples/multi_process/symmetric_mp/main.c
examples/netmap_compat/bridge/bridge.c
examples/packet_ordering/main.c
examples/performance-thread/l3fwd-thread/main.c
examples/ptpclient/ptpclient.c
examples/qos_meter/main.c
examples/qos_sched/init.c
examples/quota_watermark/qw/init.c
examples/rxtx_callbacks/main.c
examples/server_node_efd/server/init.c
examples/skeleton/basicfwd.c
examples/vhost/main.c
examples/vm_power_manager/main.c

index 9acf666dc93da053c15fc8067abaeb34ebb22b7b..3d36629a1b1fb5f69009e52ed37bfbe91bf772bc 100644 (file)
@@ -477,7 +477,12 @@ initialize_ports(struct app_config_params *app_params,
                }
        }
 
-       rte_eth_promiscuous_enable(port_id);
+       ret = rte_eth_promiscuous_enable(port_id);
+       if (ret != 0) {
+               printf("Cannot enable promiscuous mode: err=%s, port=%u\n",
+                       rte_strerror(-ret), port_id);
+               return ret;
+       }
 
        rte_eth_macaddr_get(port_id, &bbdev_port_eth_addr);
        print_mac(port_id, &bbdev_port_eth_addr);
index be62c1713a7ff55bb8da08ad757dede79a6c4132..39214cfeeba7acc0f467f7fffa2dc56e9bb71131 100644 (file)
@@ -299,7 +299,13 @@ bond_port_init(struct rte_mempool *mbuf_pool)
                        rte_exit(-1, "\nFailed to activate slaves\n");
        }
 
-       rte_eth_promiscuous_enable(BOND_PORT);
+       retval = rte_eth_promiscuous_enable(BOND_PORT);
+       if (retval != 0) {
+               rte_exit(EXIT_FAILURE,
+                               "port %u: promiscuous mode enable failed: %s\n",
+                               BOND_PORT, rte_strerror(-retval));
+               return;
+       }
 
        struct rte_ether_addr addr;
 
index 8942f3607c8afbec9b7d62e44df01c2e8eae3251..125ee877f3f59cdcc0f9a1c2b091654e1039f657 100644 (file)
@@ -194,7 +194,9 @@ port_init(uint16_t port, struct rte_mempool *mbuf_pool)
                        addr.addr_bytes[2], addr.addr_bytes[3],
                        addr.addr_bytes[4], addr.addr_bytes[5]);
 
-       rte_eth_promiscuous_enable(port);
+       retval = rte_eth_promiscuous_enable(port);
+       if (retval != 0)
+               return retval;
 
        return 0;
 }
index 3789fbfd7b5293643b84a09dfe3de53558d74fa7..c734c7750c01a62d0bc3e96a5607f2a6b12675b7 100644 (file)
@@ -333,7 +333,9 @@ port_init(uint8_t port, struct rte_mempool *mbuf_pool)
                        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;
 }
index d7f3598afbddb3642d5093e7a03b1d23b4668f58..f3c0206b534a3f2ea4a1a6d648740765422427a6 100644 (file)
@@ -473,7 +473,10 @@ init_port(uint16_t port)
        if (ret < 0)
                FATAL_ERROR("Could not start port%u (%d)", port, ret);
 
-       rte_eth_promiscuous_enable(port);
+       ret = rte_eth_promiscuous_enable(port);
+       if (ret != 0)
+               FATAL_ERROR("Could not enable promiscuous mode for port%u (%s)",
+                           port, rte_strerror(-ret));
 }
 
 /* Check the link status of all ports in up to 9s, and print them finally */
index 2130c13d8507f7259295865fb92b953b7b0e1120..ae0faf621c6340a126aa42c39e0c5c05e85071bf 100644 (file)
@@ -251,7 +251,9 @@ port_init(uint8_t port, struct rte_mempool *mbuf_pool)
                        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;
 }
index fe064fa022572d07db6146d72c14ce258c11ede3..c40cfd098b43b5e1a1b2020c02d639d10bb76816 100644 (file)
@@ -180,7 +180,12 @@ init_port(void)
                }
        }
 
-       rte_eth_promiscuous_enable(port_id);
+       ret = rte_eth_promiscuous_enable(port_id);
+       if (ret != 0)
+               rte_exit(EXIT_FAILURE,
+                       ":: promiscuous mode enable failed: err=%s, port=%u\n",
+                       rte_strerror(-ret), port_id);
+
        ret = rte_eth_dev_start(port_id);
        if (ret < 0) {
                rte_exit(EXIT_FAILURE,
index 6b832445aa9cb90dbfc18a84d8ee2e0a685a639d..70139ee4d2fe932234e62c4f0bf26a5aaba16185 100644 (file)
@@ -1038,7 +1038,11 @@ main(int argc, char **argv)
                        rte_exit(EXIT_FAILURE, "rte_eth_dev_start: err=%d, port=%d\n",
                                ret, portid);
 
-               rte_eth_promiscuous_enable(portid);
+               ret = rte_eth_promiscuous_enable(portid);
+               if (ret != 0)
+                       rte_exit(EXIT_FAILURE,
+                               "rte_eth_promiscuous_enable: err=%s, port=%d\n",
+                               rte_strerror(-ret), portid);
 
                if (check_ptype(portid) == 0) {
                        rte_eth_add_rx_callback(portid, 0, cb_parse_ptype, NULL);
index 4e3a40b5a85657721effdee3df88b4b4e9896ee3..744abf394facd23e154ae5cbff46beb0c29dc784 100644 (file)
@@ -176,8 +176,11 @@ link_create(const char *name, struct link_params *params)
        if (status < 0)
                return NULL;
 
-       if (params->promiscuous)
-               rte_eth_promiscuous_enable(port_id);
+       if (params->promiscuous) {
+               status = rte_eth_promiscuous_enable(port_id);
+               if (status != 0)
+                       return NULL;
+       }
 
        /* Port RX */
        for (i = 0; i < params->rx.n_queues; i++) {
index 87d4b5c01fd0bf77782b41aa5e0867b9288c3cc5..e810e9f3f448f4daa4eb20b7d5a2cd97ce51f835 100644 (file)
@@ -1169,7 +1169,11 @@ main(int argc, char **argv)
                        rte_exit(EXIT_FAILURE, "rte_eth_dev_start: err=%d, port=%d\n",
                                ret, portid);
 
-               rte_eth_promiscuous_enable(portid);
+               ret = rte_eth_promiscuous_enable(portid);
+               if (ret != 0)
+                       rte_exit(EXIT_FAILURE,
+                               "rte_eth_promiscuous_enable: err=%s, port=%d\n",
+                               rte_strerror(-ret), portid);
        }
 
        if (init_routing_table() < 0)
index 5ed41312eb5c7d4d3668508e874e2130e74e69bd..dac0d1843fd1d5bf84f9b9cbe383f82dbb96d487 100644 (file)
@@ -2470,8 +2470,13 @@ main(int32_t argc, char **argv)
                 * to itself through 2 cross-connected  ports of the
                 * target machine.
                 */
-               if (promiscuous_on)
-                       rte_eth_promiscuous_enable(portid);
+               if (promiscuous_on) {
+                       ret = rte_eth_promiscuous_enable(portid);
+                       if (ret != 0)
+                               rte_exit(EXIT_FAILURE,
+                                       "rte_eth_promiscuous_enable: err=%s, port=%d\n",
+                                       rte_strerror(-ret), portid);
+               }
 
                rte_eth_dev_callback_register(portid,
                        RTE_ETH_EVENT_IPSEC, inline_ipsec_event_callback, NULL);
index b34b40a006d19fae4a27ce8baf2fdb75298476d5..b15f0330b84f05e7c6600568401aa19bb08db48a 100644 (file)
@@ -83,7 +83,9 @@ port_init(uint16_t port, struct rte_mempool *mbuf_pool)
                        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;
 }
index 9a370f2dea42ac7fe2f0a9a57b06901354cb995a..c4ef3103128172bd04eb98c89dfa3964b8eda07a 100644 (file)
@@ -2574,7 +2574,12 @@ initialize_ports(struct l2fwd_crypto_options *options)
                        return -1;
                }
 
-               rte_eth_promiscuous_enable(portid);
+               retval = rte_eth_promiscuous_enable(portid);
+               if (retval != 0) {
+                       printf("rte_eth_promiscuous_enable:err=%s, port=%u\n",
+                               rte_strerror(-retval), portid);
+                       return -1;
+               }
 
                rte_eth_macaddr_get(portid, &l2fwd_ports_eth_addr[portid]);
 
index 5fcba5c88cf0f6c98bfbdff4b24545990160b2e7..3dd6e45b866deae7b8c815c8279f65d8c9cae848 100644 (file)
@@ -916,7 +916,14 @@ main(int argc, char **argv)
 
                printf("done:\n");
 
-               rte_eth_promiscuous_enable(portid);
+               ret = rte_eth_promiscuous_enable(portid);
+               if (ret != 0) {
+                       rte_exit(EXIT_FAILURE,
+                                "rte_eth_promiscuous_enable:err=%s, port=%u\n",
+                                rte_strerror(-ret), portid);
+                       return ret;
+
+               }
 
                printf("Port %u, MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n\n",
                                portid,
index a0513906884638a4a164f7264c2ad98f66194950..708f44ee0d5146ce34a8438ddf5f2d919a91c3c3 100644 (file)
@@ -709,7 +709,11 @@ main(int argc, char **argv)
                                "rte_eth_dev_start:err=%d, port=%u\n",
                                  ret, portid);
 
-               rte_eth_promiscuous_enable(portid);
+               ret = rte_eth_promiscuous_enable(portid);
+               if (ret != 0)
+                       rte_exit(EXIT_FAILURE,
+                                "rte_eth_promiscuous_enable:err=%s, port=%u\n",
+                                rte_strerror(-ret), portid);
 
                printf("Port %u, MAC address: "
                        "%02X:%02X:%02X:%02X:%02X:%02X\n\n",
index 8d4c5398101c1793b2d6b8692b7b9b83bc8f6655..db070a18be16dd5b95281bd2e7fc39440deff5d7 100644 (file)
@@ -708,7 +708,11 @@ main(int argc, char **argv)
 
                printf("done: \n");
 
-               rte_eth_promiscuous_enable(portid);
+               ret = rte_eth_promiscuous_enable(portid);
+               if (ret != 0)
+                       rte_exit(EXIT_FAILURE,
+                                "rte_eth_promiscuous_enable:err=%s, port=%u\n",
+                                rte_strerror(-ret), portid);
 
                printf("Port %u, MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n\n",
                                portid,
index 60531ce0ec702d7d794ab2d025cbf4edc90e3f63..c974a357be18d85a87112076fe5517440c8253c2 100644 (file)
@@ -2085,8 +2085,13 @@ main(int argc, char **argv)
                 * to itself through 2 cross-connected  ports of the
                 * target machine.
                 */
-               if (promiscuous_on)
-                       rte_eth_promiscuous_enable(portid);
+               if (promiscuous_on) {
+                       ret = rte_eth_promiscuous_enable(portid);
+                       if (ret != 0)
+                               rte_exit(EXIT_FAILURE,
+                                       "rte_eth_promiscuous_enable: err=%s, port=%u\n",
+                                       rte_strerror(-ret), portid);
+               }
        }
 
        check_all_ports_link_status(enabled_port_mask);
index bfcaa46c58c99ed7df6477d982532e128de7bc71..8ddc9ceb1eb01ee1a1b84e06b5068fa02306f43d 100644 (file)
@@ -2453,8 +2453,13 @@ main(int argc, char **argv)
                 * to itself through 2 cross-connected  ports of the
                 * target machine.
                 */
-               if (promiscuous_on)
-                       rte_eth_promiscuous_enable(portid);
+               if (promiscuous_on) {
+                       ret = rte_eth_promiscuous_enable(portid);
+                       if (ret != 0)
+                               rte_exit(EXIT_FAILURE,
+                                       "rte_eth_promiscuous_enable: err=%s, port=%u\n",
+                                       rte_strerror(-ret), portid);
+               }
                /* initialize spinlock for each port */
                rte_spinlock_init(&(locks[portid]));
        }
index 3294ac2dab9b32cb74d2f977ffa85db194020483..9ed495ee0104acd3a11b939b6848b89578c35a6b 100644 (file)
@@ -1035,8 +1035,13 @@ main(int argc, char **argv)
                 * to itself through 2 cross-connected  ports of the
                 * target machine.
                 */
-               if (promiscuous_on)
-                       rte_eth_promiscuous_enable(portid);
+               if (promiscuous_on) {
+                       ret = rte_eth_promiscuous_enable(portid);
+                       if (ret != 0)
+                               rte_exit(EXIT_FAILURE,
+                                       "rte_eth_promiscuous_enable: err=%s, port=%u\n",
+                                       rte_strerror(-ret), portid);
+               }
        }
 
        printf("\n");
index 0c3dfc69127156af9dc3ef3de72b59420c88a6d2..be57e6a98221365059b75c0e23033fad731ee598 100644 (file)
@@ -689,7 +689,11 @@ main(int argc, char **argv)
                                  ret, (unsigned) portid);
                printf("done:\n");
 
-               rte_eth_promiscuous_enable(portid);
+               ret = rte_eth_promiscuous_enable(portid);
+               if (ret != 0)
+                       rte_exit(EXIT_FAILURE,
+                               "rte_eth_promiscuous_enable: err=%s, port=%u\n",
+                               rte_strerror(-ret), portid);
 
                printf("Port %u, MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n\n",
                                (unsigned) portid,
index 660f5a8edd04a25bd7a8e02178f14dfe83d93776..4d49c9514ae77afd3868810bf76fa1c5f20d461b 100644 (file)
@@ -440,7 +440,11 @@ app_init_nics(void)
                if (ret < 0) {
                        rte_panic("Cannot init NIC port %u (%d)\n", port, ret);
                }
-               rte_eth_promiscuous_enable(port);
+
+               ret = rte_eth_promiscuous_enable(port);
+               if (ret != 0)
+                       rte_panic("Cannot enable promiscuous mode on port %u (%s)\n",
+                               port, rte_strerror(-ret));
 
                nic_rx_ring_size = app.nic_rx_ring_size;
                nic_tx_ring_size = app.nic_tx_ring_size;
index 3af5dc6994bf12ec593103c73d1e392b940ba425..e55def84b5b95cdc00846173d532a02241e3f300 100644 (file)
@@ -132,7 +132,9 @@ init_port(uint16_t port_num)
                if (retval < 0) return retval;
        }
 
-       rte_eth_promiscuous_enable(port_num);
+       retval = rte_eth_promiscuous_enable(port_num);
+       if (retval < 0)
+               return retval;
 
        retval  = rte_eth_dev_start(port_num);
        if (retval < 0) return retval;
index 9ae8efb0ba50db9a1e08af756ca8cd490dc36e84..95058a5dc58fa0a9a734752b9324a8f96973207f 100644 (file)
@@ -261,7 +261,9 @@ smp_port_init(uint16_t port, struct rte_mempool *mbuf_pool,
                        return retval;
        }
 
-       rte_eth_promiscuous_enable(port);
+       retval = rte_eth_promiscuous_enable(port);
+       if (retval != 0)
+               return retval;
 
        retval  = rte_eth_dev_start(port);
        if (retval < 0)
index d40e163b0e86eae2c2cc348de49e8ccd3397725b..f3819d22243d82ac1750651150c22f391656c9f1 100644 (file)
@@ -261,7 +261,11 @@ int main(int argc, char *argv[])
                        rte_exit(EXIT_FAILURE, "Couldn't setup port %hhu\n",
                                ports.p[i].id);
 
-               rte_eth_promiscuous_enable(ports.p[i].id);
+               err = rte_eth_promiscuous_enable(ports.p[i].id);
+               if (err != 0)
+                       rte_exit(EXIT_FAILURE,
+                               "Couldn't enable promiscuous mode on port %u: %s\n",
+                               ports.p[i].id, rte_strerror(-err));
        }
 
        for (i = 0; i != ports.num; i++) {
index a99961f821d568d766c45f1c0c324ef19556f0a4..132f582a9539c390a69b3cdbddb222872be63271 100644 (file)
@@ -330,7 +330,9 @@ configure_eth_port(uint16_t port_id)
                        addr.addr_bytes[2], addr.addr_bytes[3],
                        addr.addr_bytes[4], addr.addr_bytes[5]);
 
-       rte_eth_promiscuous_enable(port_id);
+       ret = rte_eth_promiscuous_enable(port_id);
+       if (ret != 0)
+               return ret;
 
        return 0;
 }
index 00f535053c862b59b71be54e97207662bbb068a3..9e25f064ed1e8fbed634b9a2f8ae3ee197d41e05 100644 (file)
@@ -3706,8 +3706,13 @@ main(int argc, char **argv)
                 * to itself through 2 cross-connected  ports of the
                 * target machine.
                 */
-               if (promiscuous_on)
-                       rte_eth_promiscuous_enable(portid);
+               if (promiscuous_on) {
+                       ret = rte_eth_promiscuous_enable(portid);
+                       if (ret != 0)
+                               rte_exit(EXIT_FAILURE,
+                                       "rte_eth_promiscuous_enable: err=%s, port=%u\n",
+                                       rte_strerror(-ret), portid);
+               }
        }
 
        for (i = 0; i < n_rx_thread; i++) {
index bc427a526c6524f4e60ad77a92d749b2eb36ac6d..6e273f644fad434bbef407bda8e16bb03c4c0787 100644 (file)
@@ -247,7 +247,12 @@ port_init(uint16_t port, struct rte_mempool *mbuf_pool)
        }
 
        /* Enable RX in promiscuous mode for the Ethernet device. */
-       rte_eth_promiscuous_enable(port);
+       retval = rte_eth_promiscuous_enable(port);
+       if (retval != 0) {
+               printf("Promiscuous mode enable failed: %s\n",
+                       rte_strerror(-retval));
+               return retval;
+       }
 
        return 0;
 }
index 13c85e9406240942e551ba34bc358d8debb74539..e8112c83a2b0811f647ba2b1cf07480cb8f5f2d6 100644 (file)
@@ -439,9 +439,17 @@ main(int argc, char **argv)
        if (ret < 0)
                rte_exit(EXIT_FAILURE, "Port %d start error (%d)\n", port_tx, ret);
 
-       rte_eth_promiscuous_enable(port_rx);
+       ret = rte_eth_promiscuous_enable(port_rx);
+       if (ret != 0)
+               rte_exit(EXIT_FAILURE,
+                       "Port %d promiscuous mode enable error (%s)\n",
+                       port_rx, rte_strerror(-ret));
 
-       rte_eth_promiscuous_enable(port_tx);
+       ret = rte_eth_promiscuous_enable(port_tx);
+       if (ret != 0)
+               rte_exit(EXIT_FAILURE,
+                       "Port %d promiscuous mode enable error (%s)\n",
+                       port_rx, rte_strerror(-ret));
 
        /* App configuration */
        ret = app_configure_flow_table();
index cf9e8f4ac7b3199c87295879a97be9f6360bdcca..dbdbdefea7069afc91ca850c1604eb81d4b8cb07 100644 (file)
@@ -163,7 +163,11 @@ app_init_port(uint16_t portid, struct rte_mempool *mp)
        } else {
                printf(" Link Down\n");
        }
-       rte_eth_promiscuous_enable(portid);
+       ret = rte_eth_promiscuous_enable(portid);
+       if (ret != 0)
+               rte_exit(EXIT_FAILURE,
+                       "rte_eth_promiscuous_enable: err=%s, port=%u\n",
+                       rte_strerror(-ret), portid);
 
        /* mark port as initialized */
        app_inited_port_mask |= 1u << portid;
index 5a0f64f4549426572be8e02c7400dade0cd4540a..5ebcc83ac31bf1b65d5fa7d120f50ef33458f422 100644 (file)
@@ -103,7 +103,11 @@ void configure_eth_port(uint16_t port_id)
                                (unsigned int) port_id, ret);
 
        /* Put it in promiscuous mode */
-       rte_eth_promiscuous_enable(port_id);
+       ret = rte_eth_promiscuous_enable(port_id);
+       if (ret != 0)
+               rte_exit(EXIT_FAILURE,
+                       "Failed to enable promiscuous mode for port %u: %s\n",
+                       port_id, rte_strerror(-ret));
 }
 
 void
index 9fd4b8efd5db8cb7f597adb54fe8fb755ec0f60b..5d545115c46c70e48d73adaf4b7aaecfbba9d189 100644 (file)
@@ -196,7 +196,10 @@ port_init(uint16_t port, struct rte_mempool *mbuf_pool)
                        addr.addr_bytes[2], addr.addr_bytes[3],
                        addr.addr_bytes[4], addr.addr_bytes[5]);
 
-       rte_eth_promiscuous_enable(port);
+       retval = rte_eth_promiscuous_enable(port);
+       if (retval != 0)
+               return retval;
+
        rte_eth_add_rx_callback(port, 0, add_timestamps, NULL);
        rte_eth_add_tx_callback(port, 0, calc_latency, NULL);
 
index 773780b4d26dfc3c49b5f4fe83894208175563ec..335741a8fc2dfd20b2b151595a5529cc1b1ce36d 100644 (file)
@@ -150,7 +150,9 @@ init_port(uint16_t port_num)
                        return retval;
        }
 
-       rte_eth_promiscuous_enable(port_num);
+       retval = rte_eth_promiscuous_enable(port_num);
+       if (retval != 0)
+               return retval;
 
        retval = rte_eth_dev_start(port_num);
        if (retval < 0)
index 171ebde7bdf3d5200c16cbf54cb4c41f9215d15e..8f1805aeb59f2b9fffd0a7156205b872a1862964 100644 (file)
@@ -98,7 +98,9 @@ port_init(uint16_t port, struct rte_mempool *mbuf_pool)
                        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;
 }
index 794d12ba7e470ba3bdd82425d9680f2f94be107a..b5632d771d46dea256dd2b359a7dff8584ee93fc 100644 (file)
@@ -336,8 +336,15 @@ port_init(uint16_t port)
                return retval;
        }
 
-       if (promiscuous)
-               rte_eth_promiscuous_enable(port);
+       if (promiscuous) {
+               retval = rte_eth_promiscuous_enable(port);
+               if (retval != 0) {
+                       RTE_LOG(ERR, VHOST_PORT,
+                               "Failed to enable promiscuous mode on port %u: %s\n",
+                               port, rte_strerror(-retval));
+                       return retval;
+               }
+       }
 
        rte_eth_macaddr_get(port, &vmdq_ports_eth_addr[port]);
        RTE_LOG(INFO, VHOST_PORT, "Max virtio devices supported: %u\n", num_devices);
index 0f48ae926c8a27fa7fa3e80ca9b7c4a9a1461b5d..3778b538c8173d8894ee4acac1945bfbdf434b4b 100644 (file)
@@ -121,7 +121,9 @@ port_init(uint16_t port, struct rte_mempool *mbuf_pool)
                        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;