examples: remove extra new line after link duplex
[dpdk.git] / examples / multi_process / client_server_mp / mp_server / init.c
index e55def8..c2ec07a 100644 (file)
@@ -184,6 +184,7 @@ check_all_ports_link_status(uint16_t port_num, uint32_t port_mask)
        uint16_t portid;
        uint8_t count, all_ports_up, print_flag = 0;
        struct rte_eth_link link;
+       int ret;
 
        printf("\nChecking link status");
        fflush(stdout);
@@ -193,7 +194,14 @@ check_all_ports_link_status(uint16_t port_num, uint32_t port_mask)
                        if ((port_mask & (1 << ports->id[portid])) == 0)
                                continue;
                        memset(&link, 0, sizeof(link));
-                       rte_eth_link_get_nowait(ports->id[portid], &link);
+                       ret = rte_eth_link_get_nowait(ports->id[portid], &link);
+                       if (ret < 0) {
+                               all_ports_up = 0;
+                               if (print_flag == 1)
+                                       printf("Port %u link get failed: %s\n",
+                                               portid, rte_strerror(-ret));
+                               continue;
+                       }
                        /* print link status if flag set */
                        if (print_flag == 1) {
                                if (link.link_status)
@@ -201,7 +209,7 @@ check_all_ports_link_status(uint16_t port_num, uint32_t port_mask)
                                                "Mbps - %s\n", ports->id[portid],
                                                (unsigned)link.link_speed,
                                (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
-                                       ("full-duplex") : ("half-duplex\n"));
+                                       ("full-duplex") : ("half-duplex"));
                                else
                                        printf("Port %d Link Down\n",
                                                (uint8_t)ports->id[portid]);
@@ -240,7 +248,7 @@ init(int argc, char *argv[])
 {
        int retval;
        const struct rte_memzone *mz;
-       uint16_t i, total_ports;
+       uint16_t i;
 
        /* init EAL, parsing EAL args */
        retval = rte_eal_init(argc, argv);
@@ -249,9 +257,6 @@ init(int argc, char *argv[])
        argc -= retval;
        argv += retval;
 
-       /* get total number of ports */
-       total_ports = rte_eth_dev_count_total();
-
        /* set up array for port data */
        mz = rte_memzone_reserve(MZ_PORT_INFO, sizeof(*ports),
                                rte_socket_id(), NO_FLAGS);
@@ -261,7 +266,7 @@ init(int argc, char *argv[])
        ports = mz->addr;
 
        /* parse additional, application arguments */
-       retval = parse_app_args(total_ports, argc, argv);
+       retval = parse_app_args(argc, argv);
        if (retval != 0)
                return -1;