net: add macro to extract MAC address bytes
[dpdk.git] / app / test-pmd / cmdline.c
index 21c2c1d..7dd3965 100644 (file)
@@ -8,12 +8,8 @@
 #include <stdio.h>
 #include <stdint.h>
 #include <string.h>
-#include <termios.h>
 #include <unistd.h>
 #include <inttypes.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-
 #include <sys/queue.h>
 
 #include <rte_common.h>
@@ -258,6 +254,9 @@ static void cmd_help_long_parsed(void *parsed_result,
 
                        "show port (port_id) fec_mode"
                        "       Show fec mode of a port.\n\n"
+
+                       "show port (port_id) flow_ctrl"
+                       "       Show flow control info of a port.\n\n"
                );
        }
 
@@ -705,9 +704,8 @@ static void cmd_help_long_parsed(void *parsed_result,
                        "del port meter profile (port_id) (profile_id)\n"
                        "    meter profile delete\n\n"
 
-                       "create port meter (port_id) (mtr_id) (profile_id) (meter_enable)\n"
-                       "(g_action) (y_action) (r_action) (stats_mask) (shared)\n"
-                       "(use_pre_meter_color) [(dscp_tbl_entry0) (dscp_tbl_entry1)...\n"
+                       "create port meter (port_id) (mtr_id) (profile_id) (policy_id) (meter_enable)\n"
+                       "(stats_mask) (shared) (use_pre_meter_color) [(dscp_tbl_entry0) (dscp_tbl_entry1)...\n"
                        "(dscp_tbl_entry63)]\n"
                        "    meter create\n\n"
 
@@ -720,6 +718,13 @@ static void cmd_help_long_parsed(void *parsed_result,
                        "del port meter (port_id) (mtr_id)\n"
                        "    meter delete\n\n"
 
+                       "add port meter policy (port_id) (policy_id) g_actions (actions)\n"
+                       "y_actions (actions) r_actions (actions)\n"
+                       "    meter policy add\n\n"
+
+                       "del port meter policy (port_id) (policy_id)\n"
+                       "    meter policy delete\n\n"
+
                        "set port meter profile (port_id) (mtr_id) (profile_id)\n"
                        "    meter update meter profile\n\n"
 
@@ -902,6 +907,9 @@ static void cmd_help_long_parsed(void *parsed_result,
                        "    Register a dynf and Set/clear this flag on Tx. "
                        "Testpmd will set this value to any Tx packet "
                        "sent from this port\n\n"
+
+                       "port cleanup (port_id) txq (queue_id) (free_cnt)\n"
+                       "    Cleanup txq mbufs for a specific Tx queue\n\n"
                );
        }
 
@@ -1214,7 +1222,7 @@ static void cmd_operate_port_parsed(void *parsed_result,
        else if (!strcmp(res->name, "reset"))
                reset_port(RTE_PORT_ALL);
        else
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
 }
 
 cmdline_parse_token_string_t cmd_operate_port_all_cmd =
@@ -1229,7 +1237,7 @@ cmdline_parse_token_string_t cmd_operate_port_all_all =
 cmdline_parse_inst_t cmd_operate_port = {
        .f = cmd_operate_port_parsed,
        .data = NULL,
-       .help_str = "port start|stop|close all: Start/Stop/Close/Reset all ports",
+       .help_str = "port start|stop|close|reset all: Start/Stop/Close/Reset all ports",
        .tokens = {
                (void *)&cmd_operate_port_all_cmd,
                (void *)&cmd_operate_port_all_port,
@@ -1260,7 +1268,7 @@ static void cmd_operate_specific_port_parsed(void *parsed_result,
        else if (!strcmp(res->name, "reset"))
                reset_port(res->value);
        else
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
 }
 
 cmdline_parse_token_string_t cmd_operate_specific_port_cmd =
@@ -1276,7 +1284,7 @@ cmdline_parse_token_num_t cmd_operate_specific_port_id =
 cmdline_parse_inst_t cmd_operate_specific_port = {
        .f = cmd_operate_specific_port_parsed,
        .data = NULL,
-       .help_str = "port start|stop|close <port_id>: Start/Stop/Close/Reset port_id",
+       .help_str = "port start|stop|close|reset <port_id>: Start/Stop/Close/Reset port_id",
        .tokens = {
                (void *)&cmd_operate_specific_port_cmd,
                (void *)&cmd_operate_specific_port_port,
@@ -1305,7 +1313,7 @@ static void cmd_set_port_setup_on_parsed(void *parsed_result,
        else if (strcmp(res->mode, "iterator") == 0)
                setup_on_probe_event = false;
        else
-               printf("Unknown mode\n");
+               fprintf(stderr, "Unknown mode\n");
 }
 
 cmdline_parse_token_string_t cmd_set_port_setup_on_set =
@@ -1354,7 +1362,7 @@ static void cmd_operate_attach_port_parsed(void *parsed_result,
        if (!strcmp(res->keyword, "attach"))
                attach_port(res->identifier);
        else
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
 }
 
 cmdline_parse_token_string_t cmd_operate_attach_port_port =
@@ -1397,7 +1405,7 @@ static void cmd_operate_detach_port_parsed(void *parsed_result,
                RTE_ETH_VALID_PORTID_OR_RET(res->port_id);
                detach_port_device(res->port_id);
        } else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
        }
 }
 
@@ -1439,7 +1447,7 @@ static void cmd_operate_detach_device_parsed(void *parsed_result,
        if (!strcmp(res->keyword, "detach"))
                detach_devargs(res->identifier);
        else
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
 }
 
 cmdline_parse_token_string_t cmd_operate_detach_device_device =
@@ -1488,7 +1496,7 @@ parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed)
        } else if (!strcmp(duplexstr, "auto")) {
                duplex = ETH_LINK_FULL_DUPLEX;
        } else {
-               printf("Unknown duplex parameter\n");
+               fprintf(stderr, "Unknown duplex parameter\n");
                return -1;
        }
 
@@ -1500,7 +1508,7 @@ parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed)
                                ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M;
        } else {
                if (duplex != ETH_LINK_FULL_DUPLEX) {
-                       printf("Invalid speed/duplex parameters\n");
+                       fprintf(stderr, "Invalid speed/duplex parameters\n");
                        return -1;
                }
                if (!strcmp(speedstr, "1000")) {
@@ -1520,7 +1528,7 @@ parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed)
                } else if (!strcmp(speedstr, "auto")) {
                        *speed = ETH_LINK_SPEED_AUTONEG;
                } else {
-                       printf("Unknown speed parameter\n");
+                       fprintf(stderr, "Unknown speed parameter\n");
                        return -1;
                }
        }
@@ -1541,7 +1549,7 @@ cmd_config_speed_all_parsed(void *parsed_result,
        portid_t pid;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -1611,13 +1619,13 @@ cmd_config_speed_specific_parsed(void *parsed_result,
        struct cmd_config_speed_specific *res = parsed_result;
        uint32_t link_speed;
 
-       if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+       if (port_id_is_invalid(res->id, ENABLED_WARN))
                return;
-       }
 
-       if (port_id_is_invalid(res->id, ENABLED_WARN))
+       if (!port_is_stopped(res->id)) {
+               fprintf(stderr, "Please stop port %d first\n", res->id);
                return;
+       }
 
        if (parse_and_check_speed_duplex(res->value1, res->value2,
                        &link_speed) < 0)
@@ -1686,7 +1694,7 @@ cmd_config_loopback_all_parsed(void *parsed_result,
        portid_t pid;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -1744,7 +1752,7 @@ cmd_config_loopback_specific_parsed(void *parsed_result,
                return;
 
        if (!port_is_stopped(res->port_id)) {
-               printf("Please stop port %u first\n", res->port_id);
+               fprintf(stderr, "Please stop port %u first\n", res->port_id);
                return;
        }
 
@@ -1801,12 +1809,12 @@ cmd_config_rx_tx_parsed(void *parsed_result,
        struct cmd_config_rx_tx *res = parsed_result;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
        if (!strcmp(res->name, "rxq")) {
                if (!res->value && !nb_txq) {
-                       printf("Warning: Either rx or tx queues should be non zero\n");
+                       fprintf(stderr, "Warning: Either rx or tx queues should be non zero\n");
                        return;
                }
                if (check_nb_rxq(res->value) != 0)
@@ -1815,7 +1823,7 @@ cmd_config_rx_tx_parsed(void *parsed_result,
        }
        else if (!strcmp(res->name, "txq")) {
                if (!res->value && !nb_rxq) {
-                       printf("Warning: Either rx or tx queues should be non zero\n");
+                       fprintf(stderr, "Warning: Either rx or tx queues should be non zero\n");
                        return;
                }
                if (check_nb_txq(res->value) != 0)
@@ -1832,7 +1840,7 @@ cmd_config_rx_tx_parsed(void *parsed_result,
 
                nb_txd = res->value;
        } else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
                return;
        }
 
@@ -1889,7 +1897,7 @@ cmd_config_max_pkt_len_parsed(void *parsed_result,
        int ret;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -1898,8 +1906,9 @@ cmd_config_max_pkt_len_parsed(void *parsed_result,
 
                if (!strcmp(res->name, "max-pkt-len")) {
                        if (res->value < RTE_ETHER_MIN_LEN) {
-                               printf("max-pkt-len can not be less than %d\n",
-                                               RTE_ETHER_MIN_LEN);
+                               fprintf(stderr,
+                                       "max-pkt-len can not be less than %d\n",
+                                       RTE_ETHER_MIN_LEN);
                                return;
                        }
                        if (res->value == port->dev_conf.rxmode.max_rx_pkt_len)
@@ -1907,7 +1916,8 @@ cmd_config_max_pkt_len_parsed(void *parsed_result,
 
                        ret = eth_dev_info_get_print_err(pid, &port->dev_info);
                        if (ret != 0) {
-                               printf("rte_eth_dev_info_get() failed for port %u\n",
+                               fprintf(stderr,
+                                       "rte_eth_dev_info_get() failed for port %u\n",
                                        pid);
                                return;
                        }
@@ -1918,7 +1928,7 @@ cmd_config_max_pkt_len_parsed(void *parsed_result,
                        if (update_jumbo_frame_offload(pid) != 0)
                                port->dev_conf.rxmode.max_rx_pkt_len = max_rx_pkt_len_backup;
                } else {
-                       printf("Unknown parameter\n");
+                       fprintf(stderr, "Unknown parameter\n");
                        return;
                }
        }
@@ -1976,7 +1986,7 @@ cmd_config_max_lro_pkt_size_parsed(void *parsed_result,
        portid_t pid;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -1990,7 +2000,7 @@ cmd_config_max_lro_pkt_size_parsed(void *parsed_result,
 
                        port->dev_conf.rxmode.max_lro_pkt_size = res->value;
                } else {
-                       printf("Unknown parameter\n");
+                       fprintf(stderr, "Unknown parameter\n");
                        return;
                }
        }
@@ -2047,7 +2057,7 @@ cmd_config_mtu_parsed(void *parsed_result,
        struct cmd_config_mtu_result *res = parsed_result;
 
        if (res->value < RTE_ETHER_MIN_LEN) {
-               printf("mtu cannot be less than %d\n", RTE_ETHER_MIN_LEN);
+               fprintf(stderr, "mtu cannot be less than %d\n", RTE_ETHER_MIN_LEN);
                return;
        }
        port_mtu_set(res->port_id, res->value);
@@ -2100,7 +2110,7 @@ cmd_config_rx_mode_flag_parsed(void *parsed_result,
        struct cmd_config_rx_mode_flag *res = parsed_result;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -2110,11 +2120,11 @@ cmd_config_rx_mode_flag_parsed(void *parsed_result,
                else if (!strcmp(res->value, "off"))
                        rx_drop_en = 0;
                else {
-                       printf("Unknown parameter\n");
+                       fprintf(stderr, "Unknown parameter\n");
                        return;
                }
        } else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
                return;
        }
 
@@ -2259,7 +2269,7 @@ cmd_config_rss_parsed(void *parsed_result,
                                                atoi(res->value) < 64)
                rss_conf.rss_hf = 1ULL << atoi(res->value);
        else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
                return;
        }
        rss_conf.rss_key = NULL;
@@ -2285,8 +2295,8 @@ cmd_config_rss_parsed(void *parsed_result,
                diag = rte_eth_dev_rss_hash_update(i, &local_rss_conf);
                if (diag < 0) {
                        all_updated = 0;
-                       printf("Configuration of RSS hash at ethernet port %d "
-                               "failed with error (%d): %s.\n",
+                       fprintf(stderr,
+                               "Configuration of RSS hash at ethernet port %d failed with error (%d): %s.\n",
                                i, -diag, strerror(-diag));
                }
        }
@@ -2354,8 +2364,9 @@ parse_and_check_key_hexa_digit(char *key, int idx)
 
        hexa_v = hexa_digit_to_value(key[idx]);
        if (hexa_v == 0xFF)
-               printf("invalid key: character %c at position %d is not a "
-                      "valid hexa digit\n", key[idx], idx);
+               fprintf(stderr,
+                       "invalid key: character %c at position %d is not a valid hexa digit\n",
+                       key[idx], idx);
        return hexa_v;
 }
 
@@ -2382,15 +2393,16 @@ cmd_config_rss_hash_key_parsed(void *parsed_result,
                        dev_info.hash_key_size <= sizeof(hash_key))
                hash_key_size = dev_info.hash_key_size;
        else {
-               printf("dev_info did not provide a valid hash key size\n");
+               fprintf(stderr,
+                       "dev_info did not provide a valid hash key size\n");
                return;
        }
        /* Check the length of the RSS hash key */
        key_len = strlen(res->key);
        if (key_len != (hash_key_size * 2)) {
-               printf("key length: %d invalid - key must be a string of %d"
-                          " hexa-decimal numbers\n",
-                          (int) key_len, hash_key_size * 2);
+               fprintf(stderr,
+                       "key length: %d invalid - key must be a string of %d hexa-decimal numbers\n",
+                       (int)key_len, hash_key_size * 2);
                return;
        }
        /* Translate RSS hash key into binary representation */
@@ -2452,6 +2464,90 @@ cmdline_parse_inst_t cmd_config_rss_hash_key = {
        },
 };
 
+/* *** cleanup txq mbufs *** */
+struct cmd_cleanup_txq_mbufs_result {
+       cmdline_fixed_string_t port;
+       cmdline_fixed_string_t keyword;
+       cmdline_fixed_string_t name;
+       uint16_t port_id;
+       uint16_t queue_id;
+       uint32_t free_cnt;
+};
+
+static void
+cmd_cleanup_txq_mbufs_parsed(void *parsed_result,
+                            __rte_unused struct cmdline *cl,
+                            __rte_unused void *data)
+{
+       struct cmd_cleanup_txq_mbufs_result *res = parsed_result;
+       uint16_t port_id = res->port_id;
+       uint16_t queue_id = res->queue_id;
+       uint32_t free_cnt = res->free_cnt;
+       struct rte_eth_txq_info qinfo;
+       int ret;
+
+       if (test_done == 0) {
+               fprintf(stderr, "Please stop forwarding first\n");
+               return;
+       }
+
+       if (rte_eth_tx_queue_info_get(port_id, queue_id, &qinfo)) {
+               fprintf(stderr, "Failed to get port %u Tx queue %u info\n",
+                       port_id, queue_id);
+               return;
+       }
+
+       if (qinfo.queue_state != RTE_ETH_QUEUE_STATE_STARTED) {
+               fprintf(stderr, "Tx queue %u not started\n", queue_id);
+               return;
+       }
+
+       ret = rte_eth_tx_done_cleanup(port_id, queue_id, free_cnt);
+       if (ret < 0) {
+               fprintf(stderr,
+                       "Failed to cleanup mbuf for port %u Tx queue %u error desc: %s(%d)\n",
+                       port_id, queue_id, strerror(-ret), ret);
+               return;
+       }
+
+       printf("Cleanup port %u Tx queue %u mbuf nums: %u\n",
+              port_id, queue_id, ret);
+}
+
+cmdline_parse_token_string_t cmd_cleanup_txq_mbufs_port =
+       TOKEN_STRING_INITIALIZER(struct cmd_cleanup_txq_mbufs_result, port,
+                                "port");
+cmdline_parse_token_string_t cmd_cleanup_txq_mbufs_cleanup =
+       TOKEN_STRING_INITIALIZER(struct cmd_cleanup_txq_mbufs_result, keyword,
+                                "cleanup");
+cmdline_parse_token_num_t cmd_cleanup_txq_mbufs_port_id =
+       TOKEN_NUM_INITIALIZER(struct cmd_cleanup_txq_mbufs_result, port_id,
+                             RTE_UINT16);
+cmdline_parse_token_string_t cmd_cleanup_txq_mbufs_txq =
+       TOKEN_STRING_INITIALIZER(struct cmd_cleanup_txq_mbufs_result, name,
+                                "txq");
+cmdline_parse_token_num_t cmd_cleanup_txq_mbufs_queue_id =
+       TOKEN_NUM_INITIALIZER(struct cmd_cleanup_txq_mbufs_result, queue_id,
+                             RTE_UINT16);
+cmdline_parse_token_num_t cmd_cleanup_txq_mbufs_free_cnt =
+       TOKEN_NUM_INITIALIZER(struct cmd_cleanup_txq_mbufs_result, free_cnt,
+                             RTE_UINT32);
+
+cmdline_parse_inst_t cmd_cleanup_txq_mbufs = {
+       .f = cmd_cleanup_txq_mbufs_parsed,
+       .data = NULL,
+       .help_str = "port cleanup <port_id> txq <queue_id> <free_cnt>",
+       .tokens = {
+               (void *)&cmd_cleanup_txq_mbufs_port,
+               (void *)&cmd_cleanup_txq_mbufs_cleanup,
+               (void *)&cmd_cleanup_txq_mbufs_port_id,
+               (void *)&cmd_cleanup_txq_mbufs_txq,
+               (void *)&cmd_cleanup_txq_mbufs_queue_id,
+               (void *)&cmd_cleanup_txq_mbufs_free_cnt,
+               NULL,
+       },
+};
+
 /* *** configure port rxq/txq ring size *** */
 struct cmd_config_rxtx_ring_size {
        cmdline_fixed_string_t port;
@@ -2476,7 +2572,7 @@ cmd_config_rxtx_ring_size_parsed(void *parsed_result,
                return;
 
        if (res->portid == (portid_t)RTE_PORT_ALL) {
-               printf("Invalid port id\n");
+               fprintf(stderr, "Invalid port id\n");
                return;
        }
 
@@ -2487,7 +2583,7 @@ cmd_config_rxtx_ring_size_parsed(void *parsed_result,
        else if (!strcmp(res->rxtxq, "txq"))
                isrx = 0;
        else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
                return;
        }
 
@@ -2497,8 +2593,9 @@ cmd_config_rxtx_ring_size_parsed(void *parsed_result,
                return;
 
        if (isrx && res->size != 0 && res->size <= rx_free_thresh) {
-               printf("Invalid rx ring_size, must > rx_free_thresh: %d\n",
-                      rx_free_thresh);
+               fprintf(stderr,
+                       "Invalid rx ring_size, must > rx_free_thresh: %d\n",
+                       rx_free_thresh);
                return;
        }
 
@@ -2568,7 +2665,7 @@ cmd_config_rxtx_queue_parsed(void *parsed_result,
        int ret = 0;
 
        if (test_done == 0) {
-               printf("Please stop forwarding first\n");
+               fprintf(stderr, "Please stop forwarding first\n");
                return;
        }
 
@@ -2576,7 +2673,7 @@ cmd_config_rxtx_queue_parsed(void *parsed_result,
                return;
 
        if (port_is_started(res->portid) != 1) {
-               printf("Please start port %u first\n", res->portid);
+               fprintf(stderr, "Please start port %u first\n", res->portid);
                return;
        }
 
@@ -2585,7 +2682,7 @@ cmd_config_rxtx_queue_parsed(void *parsed_result,
        else if (!strcmp(res->rxtxq, "txq"))
                isrx = 0;
        else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
                return;
        }
 
@@ -2599,7 +2696,7 @@ cmd_config_rxtx_queue_parsed(void *parsed_result,
        else if (!strcmp(res->opname, "stop"))
                isstart = 0;
        else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
                return;
        }
 
@@ -2613,7 +2710,7 @@ cmd_config_rxtx_queue_parsed(void *parsed_result,
                ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid);
 
        if (ret == -ENOTSUP)
-               printf("Function not supported in PMD driver\n");
+               fprintf(stderr, "Function not supported in PMD driver\n");
 }
 
 cmdline_parse_token_string_t cmd_config_rxtx_queue_port =
@@ -2667,7 +2764,7 @@ cmd_config_deferred_start_rxtx_queue_parsed(void *parsed_result,
                return;
 
        if (port_is_started(res->port_id) != 0) {
-               printf("Please stop port %u first\n", res->port_id);
+               fprintf(stderr, "Please stop port %u first\n", res->port_id);
                return;
        }
 
@@ -2766,7 +2863,7 @@ cmd_setup_rxtx_queue_parsed(
                return;
 
        if (res->portid == (portid_t)RTE_PORT_ALL) {
-               printf("Invalid port id\n");
+               fprintf(stderr, "Invalid port id\n");
                return;
        }
 
@@ -2775,15 +2872,15 @@ cmd_setup_rxtx_queue_parsed(
        else if (!strcmp(res->rxtxq, "txq"))
                isrx = 0;
        else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
                return;
        }
 
        if (isrx && rx_queue_id_is_invalid(res->qid)) {
-               printf("Invalid rx queue\n");
+               fprintf(stderr, "Invalid rx queue\n");
                return;
        } else if (!isrx && tx_queue_id_is_invalid(res->qid)) {
-               printf("Invalid tx queue\n");
+               fprintf(stderr, "Invalid tx queue\n");
                return;
        }
 
@@ -2795,9 +2892,8 @@ cmd_setup_rxtx_queue_parsed(
 
                mp = mbuf_pool_find(socket_id, 0);
                if (mp == NULL) {
-                       printf("Failed to setup RX queue: "
-                               "No mempool allocation"
-                               " on the socket %d\n",
+                       fprintf(stderr,
+                               "Failed to setup RX queue: No mempool allocation on the socket %d\n",
                                rxring_numa[res->portid]);
                        return;
                }
@@ -2808,19 +2904,24 @@ cmd_setup_rxtx_queue_parsed(
                                     &port->rx_conf[res->qid],
                                     mp);
                if (ret)
-                       printf("Failed to setup RX queue\n");
+                       fprintf(stderr, "Failed to setup RX queue\n");
        } else {
                socket_id = txring_numa[res->portid];
                if (!numa_support || socket_id == NUMA_NO_CONFIG)
                        socket_id = port->socket_id;
 
+               if (port->nb_tx_desc[res->qid] < tx_pkt_nb_segs) {
+                       fprintf(stderr,
+                               "Failed to setup TX queue: not enough descriptors\n");
+                       return;
+               }
                ret = rte_eth_tx_queue_setup(res->portid,
                                             res->qid,
                                             port->nb_tx_desc[res->qid],
                                             socket_id,
                                             &port->tx_conf[res->qid]);
                if (ret)
-                       printf("Failed to setup TX queue\n");
+                       fprintf(stderr, "Failed to setup TX queue\n");
        }
 }
 
@@ -2893,7 +2994,8 @@ parse_reta_config(const char *str,
                nb_queue = (uint16_t)int_fld[FLD_QUEUE];
 
                if (hash_index >= nb_entries) {
-                       printf("Invalid RETA hash index=%d\n", hash_index);
+                       fprintf(stderr, "Invalid RETA hash index=%d\n",
+                               hash_index);
                        return -1;
                }
 
@@ -2921,15 +3023,16 @@ cmd_set_rss_reta_parsed(void *parsed_result,
                return;
 
        if (dev_info.reta_size == 0) {
-               printf("Redirection table size is 0 which is "
-                                       "invalid for RSS\n");
+               fprintf(stderr,
+                       "Redirection table size is 0 which is invalid for RSS\n");
                return;
        } else
                printf("The reta size of port %d is %u\n",
                        res->port_id, dev_info.reta_size);
        if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) {
-               printf("Currently do not support more than %u entries of "
-                       "redirection table\n", ETH_RSS_RETA_SIZE_512);
+               fprintf(stderr,
+                       "Currently do not support more than %u entries of redirection table\n",
+                       ETH_RSS_RETA_SIZE_512);
                return;
        }
 
@@ -2937,15 +3040,16 @@ cmd_set_rss_reta_parsed(void *parsed_result,
        if (!strcmp(res->list_name, "reta")) {
                if (parse_reta_config(res->list_of_items, reta_conf,
                                                dev_info.reta_size)) {
-                       printf("Invalid RSS Redirection Table "
-                                       "config entered\n");
+                       fprintf(stderr,
+                               "Invalid RSS Redirection Table config entered\n");
                        return;
                }
                ret = rte_eth_dev_rss_reta_update(res->port_id,
                                reta_conf, dev_info.reta_size);
                if (ret != 0)
-                       printf("Bad redirection table parameter, "
-                                       "return code = %d \n", ret);
+                       fprintf(stderr,
+                               "Bad redirection table parameter, return code = %d\n",
+                               ret);
        }
 }
 
@@ -3012,14 +3116,16 @@ showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf,
                return -1;
        size = p0 - p;
        if (size >= sizeof(s)) {
-               printf("The string size exceeds the internal buffer size\n");
+               fprintf(stderr,
+                       "The string size exceeds the internal buffer size\n");
                return -1;
        }
        snprintf(s, sizeof(s), "%.*s", size, p);
        ret = rte_strsplit(s, sizeof(s), str_fld, num, ',');
        if (ret <= 0 || ret != num) {
-               printf("The bits of masks do not match the number of "
-                                       "reta entries: %u\n", num);
+               fprintf(stderr,
+                       "The bits of masks do not match the number of reta entries: %u\n",
+                       num);
                return -1;
        }
        for (i = 0; i < ret; i++)
@@ -3045,7 +3151,7 @@ cmd_showport_reta_parsed(void *parsed_result,
 
        max_reta_size = RTE_MIN(dev_info.reta_size, ETH_RSS_RETA_SIZE_512);
        if (res->size == 0 || res->size > max_reta_size) {
-               printf("Invalid redirection table size: %u (1-%u)\n",
+               fprintf(stderr, "Invalid redirection table size: %u (1-%u)\n",
                        res->size, max_reta_size);
                return;
        }
@@ -3053,8 +3159,8 @@ cmd_showport_reta_parsed(void *parsed_result,
        memset(reta_conf, 0, sizeof(reta_conf));
        if (showport_parse_reta_config(reta_conf, res->size,
                                res->list_of_items) < 0) {
-               printf("Invalid string: %s for reta masks\n",
-                                       res->list_of_items);
+               fprintf(stderr, "Invalid string: %s for reta masks\n",
+                       res->list_of_items);
                return;
        }
        port_rss_reta_info(res->port_id, reta_conf, res->size);
@@ -3170,6 +3276,7 @@ cmd_config_dcb_parsed(void *parsed_result,
                         __rte_unused void *data)
 {
        struct cmd_config_dcb *res = parsed_result;
+       struct rte_eth_dcb_info dcb_info;
        portid_t port_id = res->port_id;
        struct rte_port *port;
        uint8_t pfc_en;
@@ -3178,20 +3285,29 @@ cmd_config_dcb_parsed(void *parsed_result,
        port = &ports[port_id];
        /** Check if the port is not started **/
        if (port->port_status != RTE_PORT_STOPPED) {
-               printf("Please stop port %d first\n", port_id);
+               fprintf(stderr, "Please stop port %d first\n", port_id);
                return;
        }
 
        if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) {
-               printf("The invalid number of traffic class,"
-                       " only 4 or 8 allowed.\n");
+               fprintf(stderr,
+                       "The invalid number of traffic class, only 4 or 8 allowed.\n");
                return;
        }
 
        if (nb_fwd_lcores < res->num_tcs) {
-               printf("nb_cores shouldn't be less than number of TCs.\n");
+               fprintf(stderr,
+                       "nb_cores shouldn't be less than number of TCs.\n");
+               return;
+       }
+
+       /* Check whether the port supports the report of DCB info. */
+       ret = rte_eth_dev_get_dcb_info(port_id, &dcb_info);
+       if (ret == -ENOTSUP) {
+               fprintf(stderr, "rte_eth_dev_get_dcb_info not supported.\n");
                return;
        }
+
        if (!strncmp(res->pfc_en, "on", 2))
                pfc_en = 1;
        else
@@ -3206,13 +3322,13 @@ cmd_config_dcb_parsed(void *parsed_result,
                ret = init_port_dcb_config(port_id, DCB_ENABLED,
                                (enum rte_eth_nb_tcs)res->num_tcs,
                                pfc_en);
-
-
        if (ret != 0) {
-               printf("Cannot initialize network ports.\n");
+               fprintf(stderr, "Cannot initialize network ports.\n");
                return;
        }
 
+       fwd_config_setup();
+
        cmd_reconfig_device_queue(port_id, 1, 1);
 }
 
@@ -3273,7 +3389,7 @@ cmd_config_burst_parsed(void *parsed_result,
        int ret;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -3305,12 +3421,13 @@ cmd_config_burst_parsed(void *parsed_result,
                                rec_nb_pkts);
                        nb_pkt_per_burst = rec_nb_pkts;
                } else if (res->value > MAX_PKT_BURST) {
-                       printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST);
+                       fprintf(stderr, "burst must be >= 1 && <= %d\n",
+                               MAX_PKT_BURST);
                        return;
                } else
                        nb_pkt_per_burst = res->value;
        } else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
                return;
        }
 
@@ -3361,7 +3478,7 @@ cmd_config_thresh_parsed(void *parsed_result,
        struct cmd_config_thresh *res = parsed_result;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -3378,7 +3495,7 @@ cmd_config_thresh_parsed(void *parsed_result,
        else if(!strcmp(res->name, "rxwt"))
                rx_wthresh = res->value;
        else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
                return;
        }
 
@@ -3430,7 +3547,7 @@ cmd_config_threshold_parsed(void *parsed_result,
        struct cmd_config_threshold *res = parsed_result;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -3441,7 +3558,7 @@ cmd_config_threshold_parsed(void *parsed_result,
        else if (!strcmp(res->name, "rxfreet"))
                rx_free_thresh = res->value;
        else {
-               printf("Unknown parameter\n");
+               fprintf(stderr, "Unknown parameter\n");
                return;
        }
 
@@ -3505,7 +3622,7 @@ cmdline_parse_inst_t cmd_stop = {
 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */
 
 unsigned int
-parse_item_list(char* str, const char* item_name, unsigned int max_items,
+parse_item_list(const char *str, const char *item_name, unsigned int max_items,
                unsigned int *parsed_items, int check_unique_values)
 {
        unsigned int nb_item;
@@ -3529,11 +3646,11 @@ parse_item_list(char* str, const char* item_name, unsigned int max_items,
                        continue;
                }
                if (c != ',') {
-                       printf("character %c is not a decimal digit\n", c);
+                       fprintf(stderr, "character %c is not a decimal digit\n", c);
                        return 0;
                }
                if (! value_ok) {
-                       printf("No valid value before comma\n");
+                       fprintf(stderr, "No valid value before comma\n");
                        return 0;
                }
                if (nb_item < max_items) {
@@ -3544,8 +3661,8 @@ parse_item_list(char* str, const char* item_name, unsigned int max_items,
                nb_item++;
        }
        if (nb_item >= max_items) {
-               printf("Number of %s = %u > %u (maximum items)\n",
-                      item_name, nb_item + 1, max_items);
+               fprintf(stderr, "Number of %s = %u > %u (maximum items)\n",
+                       item_name, nb_item + 1, max_items);
                return 0;
        }
        parsed_items[nb_item++] = value;
@@ -3559,8 +3676,9 @@ parse_item_list(char* str, const char* item_name, unsigned int max_items,
        for (i = 0; i < nb_item; i++) {
                for (j = i + 1; j < nb_item; j++) {
                        if (parsed_items[j] == parsed_items[i]) {
-                               printf("duplicated %s %u at index %u and %u\n",
-                                      item_name, parsed_items[i], i, j);
+                               fprintf(stderr,
+                                       "duplicated %s %u at index %u and %u\n",
+                                       item_name, parsed_items[i], i, j);
                                return 0;
                        }
                }
@@ -3586,7 +3704,7 @@ static void cmd_set_list_parsed(void *parsed_result,
        unsigned int nb_item;
 
        if (test_done == 0) {
-               printf("Please stop forwarding first\n");
+               fprintf(stderr, "Please stop forwarding first\n");
                return;
        }
 
@@ -3649,7 +3767,7 @@ static void cmd_set_mask_parsed(void *parsed_result,
        struct cmd_setmask_result *res = parsed_result;
 
        if (test_done == 0) {
-               printf("Please stop forwarding first\n");
+               fprintf(stderr, "Please stop forwarding first\n");
                return;
        }
        if (!strcmp(res->mask, "coremask")) {
@@ -3750,7 +3868,7 @@ cmd_set_log_parsed(void *parsed_result,
        else {
                ret = rte_log_set_level_regexp(res->type, res->level);
                if (ret < 0)
-                       printf("Unable to set log level\n");
+                       fprintf(stderr, "Unable to set log level\n");
        }
 }
 
@@ -4103,7 +4221,7 @@ cmd_vlan_offload_parsed(void *parsed_result,
 
                /* No queue_id, return */
                if(i + 1 >= len) {
-                       printf("must specify (port,queue_id)\n");
+                       fprintf(stderr, "must specify (port,queue_id)\n");
                        return;
                }
                tmp = strtoul(str + i + 1, NULL, 0);
@@ -4179,7 +4297,7 @@ cmd_vlan_tpid_parsed(void *parsed_result,
        else if (!strcmp(res->vlan_type, "outer"))
                vlan_type = ETH_VLAN_TYPE_OUTER;
        else {
-               printf("Unknown vlan type\n");
+               fprintf(stderr, "Unknown vlan type\n");
                return;
        }
        vlan_tpid_set(res->port_id, vlan_type, res->tp_id);
@@ -4288,7 +4406,7 @@ cmd_tx_vlan_set_parsed(void *parsed_result,
                return;
 
        if (!port_is_stopped(res->port_id)) {
-               printf("Please stop port %d first\n", res->port_id);
+               fprintf(stderr, "Please stop port %d first\n", res->port_id);
                return;
        }
 
@@ -4345,7 +4463,7 @@ cmd_tx_vlan_set_qinq_parsed(void *parsed_result,
                return;
 
        if (!port_is_stopped(res->port_id)) {
-               printf("Please stop port %d first\n", res->port_id);
+               fprintf(stderr, "Please stop port %d first\n", res->port_id);
                return;
        }
 
@@ -4461,7 +4579,7 @@ cmd_tx_vlan_reset_parsed(void *parsed_result,
                return;
 
        if (!port_is_stopped(res->port_id)) {
-               printf("Please stop port %d first\n", res->port_id);
+               fprintf(stderr, "Please stop port %d first\n", res->port_id);
                return;
        }
 
@@ -4533,34 +4651,40 @@ csum_show(int port_id)
 
        if ((tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) &&
                (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) {
-               printf("Warning: hardware IP checksum enabled but not "
-                       "supported by port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: hardware IP checksum enabled but not supported by port %d\n",
+                       port_id);
        }
        if ((tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) &&
                (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) {
-               printf("Warning: hardware UDP checksum enabled but not "
-                       "supported by port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: hardware UDP checksum enabled but not supported by port %d\n",
+                       port_id);
        }
        if ((tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) &&
                (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) {
-               printf("Warning: hardware TCP checksum enabled but not "
-                       "supported by port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: hardware TCP checksum enabled but not supported by port %d\n",
+                       port_id);
        }
        if ((tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) &&
                (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) {
-               printf("Warning: hardware SCTP checksum enabled but not "
-                       "supported by port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: hardware SCTP checksum enabled but not supported by port %d\n",
+                       port_id);
        }
        if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) &&
                (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) {
-               printf("Warning: hardware outer IP checksum enabled but not "
-                       "supported by port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: hardware outer IP checksum enabled but not supported by port %d\n",
+                       port_id);
        }
        if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) &&
                (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)
                        == 0) {
-               printf("Warning: hardware outer UDP checksum enabled but not "
-                       "supported by port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: hardware outer UDP checksum enabled but not supported by port %d\n",
+                       port_id);
        }
 }
 
@@ -4570,7 +4694,7 @@ cmd_config_queue_tx_offloads(struct rte_port *port)
        int k;
 
        /* Apply queue tx offloads configuration */
-       for (k = 0; k < port->dev_info.max_rx_queues; k++)
+       for (k = 0; k < port->dev_info.max_tx_queues; k++)
                port->tx_conf[k].offloads =
                        port->dev_conf.txmode.offloads;
 }
@@ -4587,11 +4711,11 @@ cmd_csum_parsed(void *parsed_result,
        int ret;
 
        if (port_id_is_invalid(res->port_id, ENABLED_WARN)) {
-               printf("invalid port %d\n", res->port_id);
+               fprintf(stderr, "invalid port %d\n", res->port_id);
                return;
        }
        if (!port_is_stopped(res->port_id)) {
-               printf("Please stop port %d first\n", res->port_id);
+               fprintf(stderr, "Please stop port %d first\n", res->port_id);
                return;
        }
 
@@ -4609,32 +4733,36 @@ cmd_csum_parsed(void *parsed_result,
                                                DEV_TX_OFFLOAD_IPV4_CKSUM)) {
                                csum_offloads |= DEV_TX_OFFLOAD_IPV4_CKSUM;
                        } else {
-                               printf("IP checksum offload is not supported "
-                                      "by port %u\n", res->port_id);
+                               fprintf(stderr,
+                                       "IP checksum offload is not supported by port %u\n",
+                                       res->port_id);
                        }
                } else if (!strcmp(res->proto, "udp")) {
                        if (hw == 0 || (dev_info.tx_offload_capa &
                                                DEV_TX_OFFLOAD_UDP_CKSUM)) {
                                csum_offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
                        } else {
-                               printf("UDP checksum offload is not supported "
-                                      "by port %u\n", res->port_id);
+                               fprintf(stderr,
+                                       "UDP checksum offload is not supported by port %u\n",
+                                       res->port_id);
                        }
                } else if (!strcmp(res->proto, "tcp")) {
                        if (hw == 0 || (dev_info.tx_offload_capa &
                                                DEV_TX_OFFLOAD_TCP_CKSUM)) {
                                csum_offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
                        } else {
-                               printf("TCP checksum offload is not supported "
-                                      "by port %u\n", res->port_id);
+                               fprintf(stderr,
+                                       "TCP checksum offload is not supported by port %u\n",
+                                       res->port_id);
                        }
                } else if (!strcmp(res->proto, "sctp")) {
                        if (hw == 0 || (dev_info.tx_offload_capa &
                                                DEV_TX_OFFLOAD_SCTP_CKSUM)) {
                                csum_offloads |= DEV_TX_OFFLOAD_SCTP_CKSUM;
                        } else {
-                               printf("SCTP checksum offload is not supported "
-                                      "by port %u\n", res->port_id);
+                               fprintf(stderr,
+                                       "SCTP checksum offload is not supported by port %u\n",
+                                       res->port_id);
                        }
                } else if (!strcmp(res->proto, "outer-ip")) {
                        if (hw == 0 || (dev_info.tx_offload_capa &
@@ -4642,8 +4770,9 @@ cmd_csum_parsed(void *parsed_result,
                                csum_offloads |=
                                                DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
                        } else {
-                               printf("Outer IP checksum offload is not "
-                                      "supported by port %u\n", res->port_id);
+                               fprintf(stderr,
+                                       "Outer IP checksum offload is not supported by port %u\n",
+                                       res->port_id);
                        }
                } else if (!strcmp(res->proto, "outer-udp")) {
                        if (hw == 0 || (dev_info.tx_offload_capa &
@@ -4651,8 +4780,9 @@ cmd_csum_parsed(void *parsed_result,
                                csum_offloads |=
                                                DEV_TX_OFFLOAD_OUTER_UDP_CKSUM;
                        } else {
-                               printf("Outer UDP checksum offload is not "
-                                      "supported by port %u\n", res->port_id);
+                               fprintf(stderr,
+                                       "Outer UDP checksum offload is not supported by port %u\n",
+                                       res->port_id);
                        }
                }
 
@@ -4791,7 +4921,7 @@ cmd_tso_set_parsed(void *parsed_result,
        if (port_id_is_invalid(res->port_id, ENABLED_WARN))
                return;
        if (!port_is_stopped(res->port_id)) {
-               printf("Please stop port %d first\n", res->port_id);
+               fprintf(stderr, "Please stop port %d first\n", res->port_id);
                return;
        }
 
@@ -4804,8 +4934,8 @@ cmd_tso_set_parsed(void *parsed_result,
 
        if ((ports[res->port_id].tso_segsz != 0) &&
                (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
-               printf("Error: TSO is not supported by port %d\n",
-                      res->port_id);
+               fprintf(stderr, "Error: TSO is not supported by port %d\n",
+                       res->port_id);
                return;
        }
 
@@ -4828,8 +4958,9 @@ cmd_tso_set_parsed(void *parsed_result,
 
        if ((ports[res->port_id].tso_segsz != 0) &&
                (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
-               printf("Warning: TSO enabled but not "
-                       "supported by port %d\n", res->port_id);
+               fprintf(stderr,
+                       "Warning: TSO enabled but not supported by port %d\n",
+                       res->port_id);
        }
 
        cmd_reconfig_device_queue(res->port_id, 1, 1);
@@ -4898,23 +5029,29 @@ check_tunnel_tso_nic_support(portid_t port_id)
                return dev_info;
 
        if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO))
-               printf("Warning: VXLAN TUNNEL TSO not supported therefore "
-                      "not enabled for port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: VXLAN TUNNEL TSO not supported therefore not enabled for port %d\n",
+                       port_id);
        if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO))
-               printf("Warning: GRE TUNNEL TSO not supported therefore "
-                      "not enabled for port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: GRE TUNNEL TSO not supported therefore not enabled for port %d\n",
+                       port_id);
        if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO))
-               printf("Warning: IPIP TUNNEL TSO not supported therefore "
-                      "not enabled for port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: IPIP TUNNEL TSO not supported therefore not enabled for port %d\n",
+                       port_id);
        if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO))
-               printf("Warning: GENEVE TUNNEL TSO not supported therefore "
-                      "not enabled for port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: GENEVE TUNNEL TSO not supported therefore not enabled for port %d\n",
+                       port_id);
        if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO))
-               printf("Warning: IP TUNNEL TSO not supported therefore "
-                      "not enabled for port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: IP TUNNEL TSO not supported therefore not enabled for port %d\n",
+                       port_id);
        if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO))
-               printf("Warning: UDP TUNNEL TSO not supported therefore "
-                      "not enabled for port %d\n", port_id);
+               fprintf(stderr,
+                       "Warning: UDP TUNNEL TSO not supported therefore not enabled for port %d\n",
+                       port_id);
        return dev_info;
 }
 
@@ -4929,7 +5066,7 @@ cmd_tunnel_tso_set_parsed(void *parsed_result,
        if (port_id_is_invalid(res->port_id, ENABLED_WARN))
                return;
        if (!port_is_stopped(res->port_id)) {
-               printf("Please stop port %d first\n", res->port_id);
+               fprintf(stderr, "Please stop port %d first\n", res->port_id);
                return;
        }
 
@@ -4972,12 +5109,12 @@ cmd_tunnel_tso_set_parsed(void *parsed_result,
                 */
 
                if (!ports[res->port_id].parse_tunnel)
-                       printf("Warning: csum parse_tunnel must be set "
-                               "so that tunneled packets are recognized\n");
+                       fprintf(stderr,
+                               "Warning: csum parse_tunnel must be set so that tunneled packets are recognized\n");
                if (!(ports[res->port_id].dev_conf.txmode.offloads &
                      DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM))
-                       printf("Warning: csum set outer-ip must be set to hw "
-                               "if outer L3 is IPv4; not necessary for IPv6\n");
+                       fprintf(stderr,
+                               "Warning: csum set outer-ip must be set to hw if outer L3 is IPv4; not necessary for IPv6\n");
        }
 
        cmd_config_queue_tx_offloads(&ports[res->port_id]);
@@ -5241,17 +5378,17 @@ cmd_gso_size_parsed(void *parsed_result,
        struct cmd_gso_size_result *res = parsed_result;
 
        if (test_done == 0) {
-               printf("Before setting GSO segsz, please first"
-                               " stop forwarding\n");
+               fprintf(stderr,
+                       "Before setting GSO segsz, please first stop forwarding\n");
                return;
        }
 
        if (!strcmp(res->cmd_keyword, "gso") &&
                        !strcmp(res->cmd_segsz, "segsz")) {
                if (res->cmd_size < RTE_GSO_SEG_SIZE_MIN)
-                       printf("gso_size should be larger than %zu."
-                                       " Please input a legal value\n",
-                                       RTE_GSO_SEG_SIZE_MIN);
+                       fprintf(stderr,
+                               "gso_size should be larger than %zu. Please input a legal value\n",
+                               RTE_GSO_SEG_SIZE_MIN);
                else
                        gso_max_segment_size = res->cmd_size;
        }
@@ -5299,7 +5436,7 @@ cmd_gso_show_parsed(void *parsed_result,
        struct cmd_gso_show_result *res = parsed_result;
 
        if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
-               printf("invalid port id %u\n", res->cmd_pid);
+               fprintf(stderr, "invalid port id %u\n", res->cmd_pid);
                return;
        }
        if (!strcmp(res->cmd_keyword, "gso")) {
@@ -5354,6 +5491,12 @@ cmd_set_flush_rx_parsed(void *parsed_result,
                __rte_unused void *data)
 {
        struct cmd_set_flush_rx *res = parsed_result;
+
+       if (num_procs > 1 && (strcmp(res->mode, "on") == 0)) {
+               printf("multi-process doesn't support to flush Rx queues.\n");
+               return;
+       }
+
        no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
 }
 
@@ -5452,7 +5595,8 @@ cmd_set_bypass_mode_parsed(void *parsed_result,
        rc = rte_pmd_ixgbe_bypass_state_set(port_id, &bypass_mode);
 #endif
        if (rc != 0)
-               printf("\t Failed to set bypass mode for port = %d.\n", port_id);
+               fprintf(stderr, "\t Failed to set bypass mode for port = %d.\n",
+                       port_id);
 }
 
 cmdline_parse_token_string_t cmd_setbypass_mode_set =
@@ -5539,9 +5683,9 @@ cmd_set_bypass_event_parsed(void *parsed_result,
                                                           bypass_timeout);
                }
                if (rc != 0) {
-                       printf("Failed to set timeout value %u "
-                       "for port %d, errto code: %d.\n",
-                       bypass_timeout, port_id, rc);
+                       fprintf(stderr,
+                               "Failed to set timeout value %u for port %d, errto code: %d.\n",
+                               bypass_timeout, port_id, rc);
                }
        }
 
@@ -5551,8 +5695,8 @@ cmd_set_bypass_event_parsed(void *parsed_result,
 #endif
 
        if (rc != 0)
-               printf("\t Failed to set bypass event for port = %d.\n",
-                      port_id);
+               fprintf(stderr, "\t Failed to set bypass event for port = %d.\n",
+                       port_id);
 }
 
 cmdline_parse_token_string_t cmd_setbypass_event_set =
@@ -5694,7 +5838,8 @@ cmd_show_bypass_config_parsed(void *parsed_result,
 
        /* Display the bypass mode.*/
        if (rte_pmd_ixgbe_bypass_state_show(port_id, &bypass_mode) != 0) {
-               printf("\tFailed to get bypass mode for port = %d\n", port_id);
+               fprintf(stderr, "\tFailed to get bypass mode for port = %d\n",
+                       port_id);
                return;
        }
        else {
@@ -5714,7 +5859,8 @@ cmd_show_bypass_config_parsed(void *parsed_result,
        for (i = RTE_PMD_IXGBE_BYPASS_EVENT_START; i < RTE_DIM(events); i++) {
 
                if (rte_pmd_ixgbe_bypass_event_show(port_id, i, &event_mode)) {
-                       printf("\tFailed to get bypass mode for event = %s\n",
+                       fprintf(stderr,
+                               "\tFailed to get bypass mode for event = %s\n",
                                events[i]);
                } else {
                        if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(event_mode))
@@ -5726,7 +5872,8 @@ cmd_show_bypass_config_parsed(void *parsed_result,
        }
 #endif
        if (rc != 0)
-               printf("\tFailed to get bypass configuration for port = %d\n",
+               fprintf(stderr,
+                       "\tFailed to get bypass configuration for port = %d\n",
                       port_id);
 }
 
@@ -5776,7 +5923,8 @@ static void cmd_set_bonding_mode_parsed(void *parsed_result,
 
        /* Set the bonding mode for the relevant port. */
        if (0 != rte_eth_bond_mode_set(port_id, res->value))
-               printf("\t Failed to set bonding mode for port = %d.\n", port_id);
+               fprintf(stderr, "\t Failed to set bonding mode for port = %d.\n",
+                       port_id);
 }
 
 cmdline_parse_token_string_t cmd_setbonding_mode_set =
@@ -5832,7 +5980,7 @@ static void cmd_set_bonding_lacp_dedicated_queues_parsed(void *parsed_result,
 
        /** Check if the port is not started **/
        if (port->port_status != RTE_PORT_STOPPED) {
-               printf("Please stop port %d first\n", port_id);
+               fprintf(stderr, "Please stop port %d first\n", port_id);
                return;
        }
 
@@ -5913,14 +6061,15 @@ static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result,
        } else if (!strcmp(res->policy, "l34")) {
                policy = BALANCE_XMIT_POLICY_LAYER34;
        } else {
-               printf("\t Invalid xmit policy selection");
+               fprintf(stderr, "\t Invalid xmit policy selection");
                return;
        }
 
        /* Set the bonding mode for the relevant port. */
        if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) {
-               printf("\t Failed to set bonding balance xmit policy for port = %d.\n",
-                               port_id);
+               fprintf(stderr,
+                       "\t Failed to set bonding balance xmit policy for port = %d.\n",
+                       port_id);
        }
 }
 
@@ -5979,7 +6128,8 @@ static void cmd_show_bonding_config_parsed(void *parsed_result,
        /* Display the bonding mode.*/
        bonding_mode = rte_eth_bond_mode_get(port_id);
        if (bonding_mode < 0) {
-               printf("\tFailed to get bonding mode for port = %d\n", port_id);
+               fprintf(stderr, "\tFailed to get bonding mode for port = %d\n",
+                       port_id);
                return;
        } else
                printf("\tBonding mode: %d\n", bonding_mode);
@@ -5989,8 +6139,9 @@ static void cmd_show_bonding_config_parsed(void *parsed_result,
 
                balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id);
                if (balance_xmit_policy < 0) {
-                       printf("\tFailed to get balance xmit policy for port = %d\n",
-                                       port_id);
+                       fprintf(stderr,
+                               "\tFailed to get balance xmit policy for port = %d\n",
+                               port_id);
                        return;
                } else {
                        printf("\tBalance Xmit Policy: ");
@@ -6030,7 +6181,8 @@ static void cmd_show_bonding_config_parsed(void *parsed_result,
        num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS);
 
        if (num_slaves < 0) {
-               printf("\tFailed to get slave list for port = %d\n", port_id);
+               fprintf(stderr, "\tFailed to get slave list for port = %d\n",
+                       port_id);
                return;
        }
        if (num_slaves > 0) {
@@ -6048,7 +6200,9 @@ static void cmd_show_bonding_config_parsed(void *parsed_result,
                        RTE_MAX_ETHPORTS);
 
        if (num_active_slaves < 0) {
-               printf("\tFailed to get active slave list for port = %d\n", port_id);
+               fprintf(stderr,
+                       "\tFailed to get active slave list for port = %d\n",
+                       port_id);
                return;
        }
        if (num_active_slaves > 0) {
@@ -6065,7 +6219,8 @@ static void cmd_show_bonding_config_parsed(void *parsed_result,
 
        primary_id = rte_eth_bond_primary_get(port_id);
        if (primary_id < 0) {
-               printf("\tFailed to get primary slave for port = %d\n", port_id);
+               fprintf(stderr, "\tFailed to get primary slave for port = %d\n",
+                       port_id);
                return;
        } else
                printf("\tPrimary: [%d]\n", primary_id);
@@ -6118,8 +6273,8 @@ static void cmd_set_bonding_primary_parsed(void *parsed_result,
 
        /* Set the primary slave for a bonded device. */
        if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) {
-               printf("\t Failed to set primary slave for port = %d.\n",
-                               master_port_id);
+               fprintf(stderr, "\t Failed to set primary slave for port = %d.\n",
+                       master_port_id);
                return;
        }
        init_port_config();
@@ -6175,8 +6330,9 @@ static void cmd_add_bonding_slave_parsed(void *parsed_result,
 
        /* add the slave for a bonded device. */
        if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) {
-               printf("\t Failed to add slave %d to master port = %d.\n",
-                               slave_port_id, master_port_id);
+               fprintf(stderr,
+                       "\t Failed to add slave %d to master port = %d.\n",
+                       slave_port_id, master_port_id);
                return;
        }
        init_port_config();
@@ -6233,8 +6389,9 @@ static void cmd_remove_bonding_slave_parsed(void *parsed_result,
 
        /* remove the slave from a bonded device. */
        if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) {
-               printf("\t Failed to remove slave %d from master port = %d.\n",
-                               slave_port_id, master_port_id);
+               fprintf(stderr,
+                       "\t Failed to remove slave %d from master port = %d.\n",
+                       slave_port_id, master_port_id);
                return;
        }
        init_port_config();
@@ -6293,7 +6450,7 @@ static void cmd_create_bonded_device_parsed(void *parsed_result,
        int ret;
 
        if (test_done == 0) {
-               printf("Please stop forwarding first\n");
+               fprintf(stderr, "Please stop forwarding first\n");
                return;
        }
 
@@ -6303,7 +6460,7 @@ static void cmd_create_bonded_device_parsed(void *parsed_result,
        /* Create a new bonded device. */
        port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket);
        if (port_id < 0) {
-               printf("\t Failed to create bonded device.\n");
+               fprintf(stderr, "\t Failed to create bonded device.\n");
                return;
        } else {
                printf("Created new bonded device %s on (port %d).\n", ethdev_name,
@@ -6314,7 +6471,8 @@ static void cmd_create_bonded_device_parsed(void *parsed_result,
                reconfig(port_id, res->socket);
                ret = rte_eth_promiscuous_enable(port_id);
                if (ret != 0)
-                       printf("Failed to enable promiscuous mode for port %u: %s - ignore\n",
+                       fprintf(stderr,
+                               "Failed to enable promiscuous mode for port %u: %s - ignore\n",
                                port_id, rte_strerror(-ret));
 
                ports[port_id].need_setup = 0;
@@ -6377,7 +6535,8 @@ static void cmd_set_bond_mac_addr_parsed(void *parsed_result,
 
        /* check the return value and print it if is < 0 */
        if (ret < 0)
-               printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "set_bond_mac_addr error: (%s)\n",
+                       strerror(-ret));
 }
 
 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set =
@@ -6429,7 +6588,8 @@ static void cmd_set_bond_mon_period_parsed(void *parsed_result,
 
        /* check the return value and print it if is < 0 */
        if (ret < 0)
-               printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "set_bond_mac_addr error: (%s)\n",
+                       strerror(-ret));
 }
 
 cmdline_parse_token_string_t cmd_set_bond_mon_period_set =
@@ -6863,6 +7023,81 @@ cmdline_parse_inst_t cmd_set_allmulti_mode_one = {
        },
 };
 
+/* *** GET CURRENT ETHERNET LINK FLOW CONTROL *** */
+struct cmd_link_flow_ctrl_show {
+       cmdline_fixed_string_t show;
+       cmdline_fixed_string_t port;
+       portid_t port_id;
+       cmdline_fixed_string_t flow_ctrl;
+};
+
+cmdline_parse_token_string_t cmd_lfc_show_show =
+       TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_show,
+                               show, "show");
+cmdline_parse_token_string_t cmd_lfc_show_port =
+       TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_show,
+                               port, "port");
+cmdline_parse_token_num_t cmd_lfc_show_portid =
+       TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_show,
+                               port_id, RTE_UINT16);
+cmdline_parse_token_string_t cmd_lfc_show_flow_ctrl =
+       TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_show,
+                               flow_ctrl, "flow_ctrl");
+
+static void
+cmd_link_flow_ctrl_show_parsed(void *parsed_result,
+                             __rte_unused struct cmdline *cl,
+                             __rte_unused void *data)
+{
+       struct cmd_link_flow_ctrl_show *res = parsed_result;
+       static const char *info_border = "*********************";
+       struct rte_eth_fc_conf fc_conf;
+       bool rx_fc_en = false;
+       bool tx_fc_en = false;
+       int ret;
+
+       ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf);
+       if (ret != 0) {
+               fprintf(stderr,
+                       "Failed to get current flow ctrl information: err = %d\n",
+                       ret);
+               return;
+       }
+
+       if (fc_conf.mode == RTE_FC_RX_PAUSE || fc_conf.mode == RTE_FC_FULL)
+               rx_fc_en = true;
+       if (fc_conf.mode == RTE_FC_TX_PAUSE || fc_conf.mode == RTE_FC_FULL)
+               tx_fc_en = true;
+
+       printf("\n%s Flow control infos for port %-2d %s\n",
+               info_border, res->port_id, info_border);
+       printf("FC mode:\n");
+       printf("   Rx pause: %s\n", rx_fc_en ? "on" : "off");
+       printf("   Tx pause: %s\n", tx_fc_en ? "on" : "off");
+       printf("Autoneg: %s\n", fc_conf.autoneg ? "on" : "off");
+       printf("Pause time: 0x%x\n", fc_conf.pause_time);
+       printf("High waterline: 0x%x\n", fc_conf.high_water);
+       printf("Low waterline: 0x%x\n", fc_conf.low_water);
+       printf("Send XON: %s\n", fc_conf.send_xon ? "on" : "off");
+       printf("Forward MAC control frames: %s\n",
+               fc_conf.mac_ctrl_frame_fwd ? "on" : "off");
+       printf("\n%s**************   End  ***********%s\n",
+               info_border, info_border);
+}
+
+cmdline_parse_inst_t cmd_link_flow_control_show = {
+       .f = cmd_link_flow_ctrl_show_parsed,
+       .data = NULL,
+       .help_str = "show port <port_id> flow_ctrl",
+       .tokens = {
+               (void *)&cmd_lfc_show_show,
+               (void *)&cmd_lfc_show_port,
+               (void *)&cmd_lfc_show_portid,
+               (void *)&cmd_lfc_show_flow_ctrl,
+               NULL,
+       },
+};
+
 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */
 struct cmd_link_flow_ctrl_set_result {
        cmdline_fixed_string_t set;
@@ -7121,8 +7356,9 @@ cmd_link_flow_ctrl_set_parsed(void *parsed_result,
        if (cmd) {
                ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf);
                if (ret != 0) {
-                       printf("cannot get current flow ctrl parameters, return"
-                              "code = %d\n", ret);
+                       fprintf(stderr,
+                               "cannot get current flow ctrl parameters, return code = %d\n",
+                               ret);
                        return;
                }
 
@@ -7166,7 +7402,9 @@ cmd_link_flow_ctrl_set_parsed(void *parsed_result,
 
        ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf);
        if (ret != 0)
-               printf("bad flow contrl parameter, return code = %d \n", ret);
+               fprintf(stderr,
+                       "bad flow control parameter, return code = %d\n",
+                       ret);
 }
 
 /* *** SETUP ETHERNET PRIORITY FLOW CONTROL *** */
@@ -7215,7 +7453,9 @@ cmd_priority_flow_ctrl_set_parsed(void *parsed_result,
 
        ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf);
        if (ret != 0)
-               printf("bad priority flow contrl parameter, return code = %d \n", ret);
+               fprintf(stderr,
+                       "bad priority flow control parameter, return code = %d\n",
+                       ret);
 }
 
 cmdline_parse_token_string_t cmd_pfc_set_set =
@@ -7729,7 +7969,7 @@ static void cmd_showeeprom_parsed(void *parsed_result,
        else if (!strcmp(res->type, "module_eeprom"))
                port_module_eeprom_display(res->portnum);
        else
-               printf("Unknown argument\n");
+               fprintf(stderr, "Unknown argument\n");
 }
 
 cmdline_parse_token_string_t cmd_showeeprom_show =
@@ -8247,7 +8487,7 @@ static void cmd_mac_addr_parsed(void *parsed_result,
 
        /* check the return value and print it if is < 0 */
        if(ret < 0)
-               printf("mac_addr_cmd error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "mac_addr_cmd error: (%s)\n", strerror(-ret));
 
 }
 
@@ -8292,7 +8532,7 @@ static void cmd_set_eth_peer_parsed(void *parsed_result,
                struct cmd_eth_peer_result *res = parsed_result;
 
                if (test_done == 0) {
-                       printf("Please stop forwarding first\n");
+                       fprintf(stderr, "Please stop forwarding first\n");
                        return;
                }
                if (!strcmp(res->eth_peer, "eth-peer")) {
@@ -8529,7 +8769,9 @@ cmd_set_uc_hash_parsed(void *parsed_result,
                ret = rte_eth_dev_uc_hash_table_set(res->port_id,
                                                &res->address,(uint8_t)is_on);
        if (ret < 0)
-               printf("bad unicast hash table parameter, return code = %d \n", ret);
+               fprintf(stderr,
+                       "bad unicast hash table parameter, return code = %d\n",
+                       ret);
 
 }
 
@@ -8590,8 +8832,9 @@ cmd_set_uc_all_hash_parsed(void *parsed_result,
                (strcmp(res->value, "all") == 0))
                ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on);
        if (ret < 0)
-               printf("bad unicast hash table parameter,"
-                       "return code = %d \n", ret);
+               fprintf(stderr,
+                       "bad unicast hash table parameter, return code = %d\n",
+                       ret);
 }
 
 cmdline_parse_token_string_t cmd_set_uc_all_hash_set =
@@ -8735,8 +8978,9 @@ cmd_set_vf_rxmode_parsed(void *parsed_result,
                                                 vf_rxmode, (uint8_t)is_on);
 #endif
        if (ret < 0)
-               printf("bad VF receive mode parameter, return code = %d \n",
-               ret);
+               fprintf(stderr,
+                       "bad VF receive mode parameter, return code = %d\n",
+                       ret);
 }
 
 cmdline_parse_token_string_t cmd_set_vf_rxmode_set =
@@ -8815,7 +9059,7 @@ static void cmd_vf_mac_addr_parsed(void *parsed_result,
 #endif
 
        if(ret < 0)
-               printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "vf_mac_addr_cmd error: (%s)\n", strerror(-ret));
 
 }
 
@@ -8899,17 +9143,17 @@ cmd_vf_rx_vlan_filter_parsed(void *parsed_result,
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vlan_id %d or vf_mask %"PRIu64"\n",
-                               res->vlan_id, res->vf_mask);
+               fprintf(stderr, "invalid vlan_id %d or vf_mask %"PRIu64"\n",
+                       res->vlan_id, res->vf_mask);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented or supported\n");
+               fprintf(stderr, "function not implemented or supported\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -8976,7 +9220,8 @@ static void cmd_queue_rate_limit_parsed(void *parsed_result,
                ret = set_queue_rate_limit(res->port_num, res->queue_num,
                                        res->rate_num);
        if (ret < 0)
-               printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "queue_rate_limit_cmd error: (%s)\n",
+                       strerror(-ret));
 
 }
 
@@ -9046,7 +9291,8 @@ static void cmd_vf_rate_limit_parsed(void *parsed_result,
                ret = set_vf_rate_limit(res->port_num, res->vf_num,
                                        res->rate_num, res->q_msk_val);
        if (ret < 0)
-               printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "vf_rate_limit_cmd error: (%s)\n",
+                       strerror(-ret));
 
 }
 
@@ -9126,7 +9372,8 @@ cmd_tunnel_udp_config_parsed(void *parsed_result,
                                                         &tunnel_udp);
 
        if (ret < 0)
-               printf("udp tunneling add error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "udp tunneling add error: (%s)\n",
+                       strerror(-ret));
 }
 
 cmdline_parse_token_string_t cmd_tunnel_udp_config_rx_vxlan_port =
@@ -9189,7 +9436,7 @@ cmd_cfg_tunnel_udp_port_parsed(void *parsed_result,
        } else if (!strcmp(res->tunnel_type, "ecpri")) {
                tunnel_udp.prot_type = RTE_TUNNEL_TYPE_ECPRI;
        } else {
-               printf("Invalid tunnel type\n");
+               fprintf(stderr, "Invalid tunnel type\n");
                return;
        }
 
@@ -9201,7 +9448,8 @@ cmd_cfg_tunnel_udp_port_parsed(void *parsed_result,
                                                         &tunnel_udp);
 
        if (ret < 0)
-               printf("udp tunneling port add error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "udp tunneling port add error: (%s)\n",
+                       strerror(-ret));
 }
 
 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_port =
@@ -9320,7 +9568,8 @@ cmd_set_mirror_mask_parsed(void *parsed_result,
 
                for (i = 0; i < nb_item; i++) {
                        if (vlan_list[i] > RTE_ETHER_MAX_VLAN_ID) {
-                               printf("Invalid vlan_id: must be < 4096\n");
+                               fprintf(stderr,
+                                       "Invalid vlan_id: must be < 4096\n");
                                return;
                        }
 
@@ -9336,7 +9585,8 @@ cmd_set_mirror_mask_parsed(void *parsed_result,
                ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
                                                res->rule_id, 0);
        if (ret < 0)
-               printf("mirror rule add error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "mirror rule add error: (%s)\n",
+                       strerror(-ret));
 }
 
 cmdline_parse_inst_t cmd_set_mirror_mask = {
@@ -9427,7 +9677,8 @@ cmd_set_mirror_link_parsed(void *parsed_result,
 
        /* check the return value and print it if is < 0 */
        if (ret < 0)
-               printf("mirror rule add error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "mirror rule add error: (%s)\n",
+                       strerror(-ret));
 
 }
 
@@ -9485,7 +9736,8 @@ cmd_reset_mirror_rule_parsed(void *parsed_result,
         /* check rule_id */
        ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id);
        if(ret < 0)
-               printf("mirror rule remove error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "mirror rule remove error: (%s)\n",
+                       strerror(-ret));
 }
 
 cmdline_parse_inst_t cmd_reset_mirror_rule = {
@@ -9557,7 +9809,7 @@ dump_socket_mem(FILE *f)
        fprintf(f,
                "Total   : size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n",
                (double)total / (1024 * 1024), (double)alloc / (1024 * 1024),
-               (double)alloc * 100 / (double)total,
+               total ? ((double)alloc * 100 / (double)total) : 0,
                (double)free / (1024 * 1024),
                n_alloc, n_free);
        if (last_allocs)
@@ -9706,10 +9958,11 @@ cmd_queue_region_parsed(void *parsed_result,
        case 0:
                break;
        case -ENOTSUP:
-               printf("function not implemented or supported\n");
+               fprintf(stderr, "function not implemented or supported\n");
                break;
        default:
-               printf("queue region config error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "queue region config error: (%s)\n",
+                       strerror(-ret));
        }
 }
 
@@ -9805,10 +10058,11 @@ cmd_region_flowtype_parsed(void *parsed_result,
        case 0:
                break;
        case -ENOTSUP:
-               printf("function not implemented or supported\n");
+               fprintf(stderr, "function not implemented or supported\n");
                break;
        default:
-               printf("region flowtype config error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "region flowtype config error: (%s)\n",
+                       strerror(-ret));
        }
 }
 
@@ -9895,11 +10149,11 @@ cmd_user_priority_region_parsed(void *parsed_result,
        case 0:
                break;
        case -ENOTSUP:
-               printf("function not implemented or supported\n");
+               fprintf(stderr, "function not implemented or supported\n");
                break;
        default:
-               printf("user_priority region config error: (%s)\n",
-                               strerror(-ret));
+               fprintf(stderr, "user_priority region config error: (%s)\n",
+                       strerror(-ret));
        }
 }
 
@@ -9988,11 +10242,11 @@ cmd_flush_queue_region_parsed(void *parsed_result,
        case 0:
                break;
        case -ENOTSUP:
-               printf("function not implemented or supported\n");
+               fprintf(stderr, "function not implemented or supported\n");
                break;
        default:
-               printf("queue region config flush error: (%s)\n",
-                               strerror(-ret));
+               fprintf(stderr, "queue region config flush error: (%s)\n",
+                       strerror(-ret));
        }
 }
 
@@ -10069,11 +10323,11 @@ cmd_show_queue_region_info_parsed(void *parsed_result,
        case 0:
                break;
        case -ENOTSUP:
-               printf("function not implemented or supported\n");
+               fprintf(stderr, "function not implemented or supported\n");
                break;
        default:
-               printf("queue region config info show error: (%s)\n",
-                               strerror(-ret));
+               fprintf(stderr, "queue region config info show error: (%s)\n",
+                       strerror(-ret));
        }
 }
 
@@ -10111,7 +10365,7 @@ do { \
        if ((ip_addr).family == AF_INET) \
                (ip) = (ip_addr).addr.ipv4.s_addr; \
        else { \
-               printf("invalid parameter.\n"); \
+               fprintf(stderr, "invalid parameter.\n"); \
                return; \
        } \
 } while (0)
@@ -10123,7 +10377,7 @@ do { \
                                 &((ip_addr).addr.ipv6), \
                                 sizeof(struct in6_addr)); \
        else { \
-               printf("invalid parameter.\n"); \
+               fprintf(stderr, "invalid parameter.\n"); \
                return; \
        } \
 } while (0)
@@ -10200,7 +10454,7 @@ cmd_flow_director_filter_parsed(void *parsed_result,
        memset(&conf, 0, sizeof(conf));
 
        if (flow_type == RTE_ETH_FLOW_UNKNOWN) {
-               printf("Invalid flow type specified.\n");
+               fprintf(stderr, "Invalid flow type specified.\n");
                return;
        }
        ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id,
@@ -10208,7 +10462,7 @@ cmd_flow_director_filter_parsed(void *parsed_result,
        if (ret)
                return;
        if (mapping[flow_type].pctype == 0ULL) {
-               printf("Invalid flow type specified.\n");
+               fprintf(stderr, "Invalid flow type specified.\n");
                return;
        }
        for (i = 0; i < RTE_PMD_I40E_PCTYPE_MAX; i++) {
@@ -10237,8 +10491,8 @@ cmd_flow_director_filter_parsed(void *parsed_result,
                                                        &conf,
                                                        add);
        if (ret < 0)
-               printf("flow director config error: (%s)\n",
-                      strerror(-ret));
+               fprintf(stderr, "flow director config error: (%s)\n",
+                       strerror(-ret));
        close_file(conf.input.packet);
 }
 
@@ -10348,7 +10602,7 @@ cmd_flow_director_mask_parsed(void *parsed_result,
        port = &ports[res->port_id];
        /** Check if the port is not started **/
        if (port->port_status != RTE_PORT_STOPPED) {
-               printf("Please stop port %d first\n", res->port_id);
+               fprintf(stderr, "Please stop port %d first\n", res->port_id);
                return;
        }
 
@@ -10356,14 +10610,14 @@ cmd_flow_director_mask_parsed(void *parsed_result,
 
        if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
                if (strcmp(res->mode_value, "MAC-VLAN")) {
-                       printf("Please set mode to MAC-VLAN.\n");
+                       fprintf(stderr, "Please set mode to MAC-VLAN.\n");
                        return;
                }
 
                mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
        } else if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_TUNNEL) {
                if (strcmp(res->mode_value, "Tunnel")) {
-                       printf("Please set mode to Tunnel.\n");
+                       fprintf(stderr, "Please set mode to Tunnel.\n");
                        return;
                }
 
@@ -10373,7 +10627,7 @@ cmd_flow_director_mask_parsed(void *parsed_result,
                mask->tunnel_type_mask = res->tunnel_type_mask;
        } else {
                if (strcmp(res->mode_value, "IP")) {
-                       printf("Please set mode to IP.\n");
+                       fprintf(stderr, "Please set mode to IP.\n");
                        return;
                }
 
@@ -10578,7 +10832,7 @@ cmd_flow_director_flxpld_parsed(void *parsed_result,
        port = &ports[res->port_id];
        /** Check if the port is not started **/
        if (port->port_status != RTE_PORT_STOPPED) {
-               printf("Please stop port %d first\n", res->port_id);
+               fprintf(stderr, "Please stop port %d first\n", res->port_id);
                return;
        }
 
@@ -10596,7 +10850,7 @@ cmd_flow_director_flxpld_parsed(void *parsed_result,
        ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset,
                            RTE_ETH_FDIR_MAX_FLEXLEN);
        if (ret < 0) {
-               printf("error: Cannot parse flex payload input.\n");
+               fprintf(stderr, "error: Cannot parse flex payload input.\n");
                return;
        }
 
@@ -10650,10 +10904,9 @@ static void cmd_mcast_addr_parsed(void *parsed_result,
        struct cmd_mcast_addr_result *res = parsed_result;
 
        if (!rte_is_multicast_ether_addr(&res->mc_addr)) {
-               printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n",
-                      res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1],
-                      res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3],
-                      res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]);
+               fprintf(stderr,
+                       "Invalid multicast addr " RTE_ETHER_ADDR_PRT_FMT "\n",
+                       RTE_ETHER_ADDR_BYTES(&res->mc_addr));
                return;
        }
        if (strcmp(res->what, "add") == 0)
@@ -10765,16 +11018,16 @@ cmd_set_vf_vlan_anti_spoof_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d\n", res->vf_id);
+               fprintf(stderr, "invalid vf_id %d\n", res->vf_id);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -10871,16 +11124,17 @@ cmd_set_vf_mac_anti_spoof_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
+               fprintf(stderr, "invalid vf_id %d or is_on %d\n",
+                       res->vf_id, is_on);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -10977,16 +11231,17 @@ cmd_set_vf_vlan_stripq_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
+               fprintf(stderr, "invalid vf_id %d or is_on %d\n",
+                       res->vf_id, is_on);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -11081,16 +11336,17 @@ cmd_set_vf_vlan_insert_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d or vlan_id %d\n", res->vf_id, res->vlan_id);
+               fprintf(stderr, "invalid vf_id %d or vlan_id %d\n",
+                       res->vf_id, res->vlan_id);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -11178,16 +11434,16 @@ cmd_set_tx_loopback_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid is_on %d\n", is_on);
+               fprintf(stderr, "invalid is_on %d\n", is_on);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -11268,16 +11524,16 @@ cmd_set_all_queues_drop_en_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid is_on %d\n", is_on);
+               fprintf(stderr, "invalid is_on %d\n", is_on);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -11360,16 +11616,17 @@ cmd_set_vf_split_drop_en_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
+               fprintf(stderr, "invalid vf_id %d or is_on %d\n",
+                       res->vf_id, is_on);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("not supported on port %d\n", res->port_id);
+               fprintf(stderr, "not supported on port %d\n", res->port_id);
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -11464,16 +11721,16 @@ cmd_set_vf_mac_addr_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d or mac_addr\n", res->vf_id);
+               fprintf(stderr, "invalid vf_id %d or mac_addr\n", res->vf_id);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -11562,7 +11819,7 @@ cmd_set_macsec_offload_on_parsed(
        if (port_id_is_invalid(port_id, ENABLED_WARN))
                return;
        if (!port_is_stopped(port_id)) {
-               printf("Please stop port %d first\n", port_id);
+               fprintf(stderr, "Please stop port %d first\n", port_id);
                return;
        }
 
@@ -11585,13 +11842,13 @@ cmd_set_macsec_offload_on_parsed(
                cmd_reconfig_device_queue(port_id, 1, 1);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", port_id);
+               fprintf(stderr, "invalid port_id %d\n", port_id);
                break;
        case -ENOTSUP:
-               printf("not supported on port %d\n", port_id);
+               fprintf(stderr, "not supported on port %d\n", port_id);
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -11659,7 +11916,7 @@ cmd_set_macsec_offload_off_parsed(
        if (port_id_is_invalid(port_id, ENABLED_WARN))
                return;
        if (!port_is_stopped(port_id)) {
-               printf("Please stop port %d first\n", port_id);
+               fprintf(stderr, "Please stop port %d first\n", port_id);
                return;
        }
 
@@ -11679,13 +11936,13 @@ cmd_set_macsec_offload_off_parsed(
                cmd_reconfig_device_queue(port_id, 1, 1);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", port_id);
+               fprintf(stderr, "invalid port_id %d\n", port_id);
                break;
        case -ENOTSUP:
-               printf("not supported on port %d\n", port_id);
+               fprintf(stderr, "not supported on port %d\n", port_id);
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -11767,13 +12024,13 @@ cmd_set_macsec_sc_parsed(
        case 0:
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("not supported on port %d\n", res->port_id);
+               fprintf(stderr, "not supported on port %d\n", res->port_id);
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -11887,16 +12144,16 @@ cmd_set_macsec_sa_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid idx %d or an %d\n", res->idx, res->an);
+               fprintf(stderr, "invalid idx %d or an %d\n", res->idx, res->an);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("not supported on port %d\n", res->port_id);
+               fprintf(stderr, "not supported on port %d\n", res->port_id);
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -11979,16 +12236,16 @@ cmd_set_vf_promisc_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d\n", res->vf_id);
+               fprintf(stderr, "invalid vf_id %d\n", res->vf_id);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -12069,16 +12326,16 @@ cmd_set_vf_allmulti_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d\n", res->vf_id);
+               fprintf(stderr, "invalid vf_id %d\n", res->vf_id);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -12159,16 +12416,17 @@ cmd_set_vf_broadcast_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
+               fprintf(stderr, "invalid vf_id %d or is_on %d\n",
+                       res->vf_id, is_on);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -12253,16 +12511,17 @@ cmd_set_vf_vlan_tag_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
+               fprintf(stderr, "invalid vf_id %d or is_on %d\n",
+                       res->vf_id, is_on);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -12374,17 +12633,17 @@ cmd_vf_max_bw_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d or bandwidth %d\n",
-                      res->vf_id, res->bw);
+               fprintf(stderr, "invalid vf_id %d or bandwidth %d\n",
+                       res->vf_id, res->bw);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -12419,24 +12678,27 @@ vf_tc_min_bw_parse_bw_list(uint8_t *bw_list,
 
        p = strchr(p0, '(');
        if (p == NULL) {
-               printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
+               fprintf(stderr,
+                       "The bandwidth-list should be '(bw1, bw2, ...)'\n");
                return -1;
        }
        p++;
        p0 = strchr(p, ')');
        if (p0 == NULL) {
-               printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
+               fprintf(stderr,
+                       "The bandwidth-list should be '(bw1, bw2, ...)'\n");
                return -1;
        }
        size = p0 - p;
        if (size >= sizeof(s)) {
-               printf("The string size exceeds the internal buffer size\n");
+               fprintf(stderr,
+                       "The string size exceeds the internal buffer size\n");
                return -1;
        }
        snprintf(s, sizeof(s), "%.*s", size, p);
        ret = rte_strsplit(s, sizeof(s), str_fld, 16, ',');
        if (ret <= 0) {
-               printf("Failed to get the bandwidth list. ");
+               fprintf(stderr, "Failed to get the bandwidth list.\n");
                return -1;
        }
        *tc_num = ret;
@@ -12474,16 +12736,16 @@ cmd_vf_tc_min_bw_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d or bandwidth\n", res->vf_id);
+               fprintf(stderr, "invalid vf_id %d or bandwidth\n", res->vf_id);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -12523,7 +12785,7 @@ cmd_tc_min_bw_parsed(
        port = &ports[res->port_id];
        /** Check if the port is not started **/
        if (port->port_status != RTE_PORT_STOPPED) {
-               printf("Please stop port %d first\n", res->port_id);
+               fprintf(stderr, "Please stop port %d first\n", res->port_id);
                return;
        }
 
@@ -12539,16 +12801,16 @@ cmd_tc_min_bw_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid bandwidth\n");
+               fprintf(stderr, "invalid bandwidth\n");
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -12589,17 +12851,18 @@ cmd_vf_tc_max_bw_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d, tc_no %d or bandwidth %d\n",
-                      res->vf_id, res->tc_no, res->bw);
+               fprintf(stderr,
+                       "invalid vf_id %d, tc_no %d or bandwidth %d\n",
+                       res->vf_id, res->tc_no, res->bw);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -13995,16 +14258,16 @@ cmd_strict_link_prio_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid tc_bitmap 0x%x\n", res->tc_map);
+               fprintf(stderr, "invalid tc_bitmap 0x%x\n", res->tc_map);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -14055,13 +14318,13 @@ cmd_ddp_add_parsed(
        int ret = -ENOTSUP;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
        filepath = strdup(res->filepath);
        if (filepath == NULL) {
-               printf("Failed to allocate memory\n");
+               fprintf(stderr, "Failed to allocate memory\n");
                return;
        }
        file_num = rte_strsplit(filepath, strlen(filepath), file_fld, 2, ',');
@@ -14080,9 +14343,9 @@ cmd_ddp_add_parsed(
 #endif
 
        if (ret == -EEXIST)
-               printf("Profile has already existed.\n");
+               fprintf(stderr, "Profile has already existed.\n");
        else if (ret < 0)
-               printf("Failed to load profile.\n");
+               fprintf(stderr, "Failed to load profile.\n");
        else if (file_num == 2)
                save_file(file_fld[1], buff, size);
 
@@ -14132,7 +14395,7 @@ cmd_ddp_del_parsed(
        int ret = -ENOTSUP;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -14148,9 +14411,9 @@ cmd_ddp_del_parsed(
 #endif
 
        if (ret == -EACCES)
-               printf("Profile does not exist.\n");
+               fprintf(stderr, "Profile does not exist.\n");
        else if (ret < 0)
-               printf("Failed to delete profile.\n");
+               fprintf(stderr, "Failed to delete profile.\n");
 
        close_file(buff);
 }
@@ -14388,7 +14651,7 @@ no_print_return:
                free(proto);
 #endif
        if (ret == -ENOTSUP)
-               printf("Function not supported in PMD driver\n");
+               fprintf(stderr, "Function not supported in PMD driver\n");
        close_file(pkg);
 }
 
@@ -14446,7 +14709,7 @@ cmd_ddp_get_list_parsed(
        size = PROFILE_INFO_SIZE * MAX_PROFILE_NUM + 4;
        p_list = (struct rte_pmd_i40e_profile_list *)malloc(size);
        if (!p_list) {
-               printf("%s: Failed to malloc buffer\n", __func__);
+               fprintf(stderr, "%s: Failed to malloc buffer\n", __func__);
                return;
        }
 
@@ -14475,7 +14738,7 @@ cmd_ddp_get_list_parsed(
 #endif
 
        if (ret < 0)
-               printf("Failed to get ddp list\n");
+               fprintf(stderr, "Failed to get ddp list\n");
 }
 
 cmdline_parse_inst_t cmd_ddp_get_list = {
@@ -14518,7 +14781,7 @@ cmd_cfg_input_set_parsed(
        int ret = -ENOTSUP;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -14532,7 +14795,7 @@ cmd_cfg_input_set_parsed(
        ret = rte_pmd_i40e_inset_get(res->port_id, res->pctype_id,
                                     &inset, inset_type);
        if (ret) {
-               printf("Failed to get input set.\n");
+               fprintf(stderr, "Failed to get input set.\n");
                return;
        }
 
@@ -14551,20 +14814,20 @@ cmd_cfg_input_set_parsed(
                ret = rte_pmd_i40e_inset_field_clear(&inset.inset,
                                                     res->field_idx);
        if (ret) {
-               printf("Failed to configure input set field.\n");
+               fprintf(stderr, "Failed to configure input set field.\n");
                return;
        }
 
        ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id,
                                     &inset, inset_type);
        if (ret) {
-               printf("Failed to set input set.\n");
+               fprintf(stderr, "Failed to set input set.\n");
                return;
        }
 #endif
 
        if (ret == -ENOTSUP)
-               printf("Function not supported\n");
+               fprintf(stderr, "Function not supported\n");
 }
 
 cmdline_parse_token_string_t cmd_cfg_input_set_port =
@@ -14641,7 +14904,7 @@ cmd_clear_input_set_parsed(
        int ret = -ENOTSUP;
 
        if (!all_ports_stopped()) {
-               printf("Please stop all ports first\n");
+               fprintf(stderr, "Please stop all ports first\n");
                return;
        }
 
@@ -14658,14 +14921,14 @@ cmd_clear_input_set_parsed(
        ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id,
                                     &inset, inset_type);
        if (ret) {
-               printf("Failed to clear input set.\n");
+               fprintf(stderr, "Failed to clear input set.\n");
                return;
        }
 
 #endif
 
        if (ret == -ENOTSUP)
-               printf("Function not supported\n");
+               fprintf(stderr, "Function not supported\n");
 }
 
 cmdline_parse_token_string_t cmd_clear_input_set_port =
@@ -14778,16 +15041,16 @@ cmd_show_vf_stats_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d\n", res->vf_id);
+               fprintf(stderr, "invalid vf_id %d\n", res->vf_id);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 
        printf("\n  %s NIC statistics for port %-2d vf %-2d %s\n",
@@ -14881,16 +15144,16 @@ cmd_clear_vf_stats_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid vf_id %d\n", res->vf_id);
+               fprintf(stderr, "invalid vf_id %d\n", res->vf_id);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -14966,13 +15229,13 @@ cmd_pctype_mapping_reset_parsed(
        case 0:
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -15049,13 +15312,13 @@ cmd_pctype_mapping_get_parsed(
        case 0:
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                return;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                return;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
                return;
        }
 
@@ -15174,16 +15437,16 @@ cmd_pctype_mapping_update_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid pctype or flow type\n");
+               fprintf(stderr, "invalid pctype or flow type\n");
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -15268,13 +15531,13 @@ cmd_ptype_mapping_get_parsed(
        case 0:
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 
 #ifdef RTE_NET_I40E
@@ -15366,17 +15629,17 @@ cmd_ptype_mapping_replace_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid ptype 0x%8x or 0x%8x\n",
-                               res->target, res->pkt_type);
+               fprintf(stderr, "invalid ptype 0x%8x or 0x%8x\n",
+                       res->target, res->pkt_type);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -15445,13 +15708,13 @@ cmd_ptype_mapping_reset_parsed(
        case 0:
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -15533,16 +15796,16 @@ cmd_ptype_mapping_update_parsed(
        case 0:
                break;
        case -EINVAL:
-               printf("invalid ptype 0x%8x\n", res->sw_ptype);
+               fprintf(stderr, "invalid ptype 0x%8x\n", res->sw_ptype);
                break;
        case -ENODEV:
-               printf("invalid port_id %d\n", res->port_id);
+               fprintf(stderr, "invalid port_id %d\n", res->port_id);
                break;
        case -ENOTSUP:
-               printf("function not implemented\n");
+               fprintf(stderr, "function not implemented\n");
                break;
        default:
-               printf("programming error: (%s)\n", strerror(-ret));
+               fprintf(stderr, "programming error: (%s)\n", strerror(-ret));
        }
 }
 
@@ -15851,14 +16114,15 @@ cmd_config_per_port_rx_offload_parsed(void *parsed_result,
        int ret;
 
        if (port->port_status != RTE_PORT_STOPPED) {
-               printf("Error: Can't config offload when Port %d "
-                      "is not stopped\n", port_id);
+               fprintf(stderr,
+                       "Error: Can't config offload when Port %d is not stopped\n",
+                       port_id);
                return;
        }
 
        single_offload = search_rx_offload(res->offload);
        if (single_offload == 0) {
-               printf("Unknown offload name: %s\n", res->offload);
+               fprintf(stderr, "Unknown offload name: %s\n", res->offload);
                return;
        }
 
@@ -15956,8 +16220,9 @@ cmd_config_per_queue_rx_offload_parsed(void *parsed_result,
        int ret;
 
        if (port->port_status != RTE_PORT_STOPPED) {
-               printf("Error: Can't config offload when Port %d "
-                      "is not stopped\n", port_id);
+               fprintf(stderr,
+                       "Error: Can't config offload when Port %d is not stopped\n",
+                       port_id);
                return;
        }
 
@@ -15966,14 +16231,15 @@ cmd_config_per_queue_rx_offload_parsed(void *parsed_result,
                return;
 
        if (queue_id >= dev_info.nb_rx_queues) {
-               printf("Error: input queue_id should be 0 ... "
-                      "%d\n", dev_info.nb_rx_queues - 1);
+               fprintf(stderr,
+                       "Error: input queue_id should be 0 ... %d\n",
+                       dev_info.nb_rx_queues - 1);
                return;
        }
 
        single_offload = search_rx_offload(res->offload);
        if (single_offload == 0) {
-               printf("Unknown offload name: %s\n", res->offload);
+               fprintf(stderr, "Unknown offload name: %s\n", res->offload);
                return;
        }
 
@@ -16266,14 +16532,15 @@ cmd_config_per_port_tx_offload_parsed(void *parsed_result,
        int ret;
 
        if (port->port_status != RTE_PORT_STOPPED) {
-               printf("Error: Can't config offload when Port %d "
-                      "is not stopped\n", port_id);
+               fprintf(stderr,
+                       "Error: Can't config offload when Port %d is not stopped\n",
+                       port_id);
                return;
        }
 
        single_offload = search_tx_offload(res->offload);
        if (single_offload == 0) {
-               printf("Unknown offload name: %s\n", res->offload);
+               fprintf(stderr, "Unknown offload name: %s\n", res->offload);
                return;
        }
 
@@ -16374,8 +16641,9 @@ cmd_config_per_queue_tx_offload_parsed(void *parsed_result,
        int ret;
 
        if (port->port_status != RTE_PORT_STOPPED) {
-               printf("Error: Can't config offload when Port %d "
-                      "is not stopped\n", port_id);
+               fprintf(stderr,
+                       "Error: Can't config offload when Port %d is not stopped\n",
+                       port_id);
                return;
        }
 
@@ -16384,14 +16652,15 @@ cmd_config_per_queue_tx_offload_parsed(void *parsed_result,
                return;
 
        if (queue_id >= dev_info.nb_tx_queues) {
-               printf("Error: input queue_id should be 0 ... "
-                      "%d\n", dev_info.nb_tx_queues - 1);
+               fprintf(stderr,
+                       "Error: input queue_id should be 0 ... %d\n",
+                       dev_info.nb_tx_queues - 1);
                return;
        }
 
        single_offload = search_tx_offload(res->offload);
        if (single_offload == 0) {
-               printf("Unknown offload name: %s\n", res->offload);
+               fprintf(stderr, "Unknown offload name: %s\n", res->offload);
                return;
        }
 
@@ -16508,13 +16777,13 @@ cmd_config_dynf_specific_parsed(void *parsed_result,
        if (flag <= 0) {
                if (strlcpy(desc_flag.name, res->name,
                            RTE_MBUF_DYN_NAMESIZE) >= RTE_MBUF_DYN_NAMESIZE) {
-                       printf("Flag name too long\n");
+                       fprintf(stderr, "Flag name too long\n");
                        return;
                }
                desc_flag.flags = 0;
                flag = rte_mbuf_dynflag_register(&desc_flag);
                if (flag < 0) {
-                       printf("Can't register flag\n");
+                       fprintf(stderr, "Can't register flag\n");
                        return;
                }
                strcpy(dynf_names[flag], desc_flag.name);
@@ -16581,7 +16850,7 @@ cmd_show_tx_metadata_parsed(void *parsed_result,
        struct cmd_show_tx_metadata_result *res = parsed_result;
 
        if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
-               printf("invalid port id %u\n", res->cmd_pid);
+               fprintf(stderr, "invalid port id %u\n", res->cmd_pid);
                return;
        }
        if (!strcmp(res->cmd_keyword, "tx_metadata")) {
@@ -16636,29 +16905,29 @@ cmd_show_fec_capability_parsed(void *parsed_result,
        int ret;
 
        if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
-               printf("Invalid port id %u\n", res->cmd_pid);
+               fprintf(stderr, "Invalid port id %u\n", res->cmd_pid);
                return;
        }
 
        ret = rte_eth_fec_get_capability(res->cmd_pid, NULL, 0);
        if (ret == -ENOTSUP) {
-               printf("Function not implemented\n");
+               fprintf(stderr, "Function not implemented\n");
                return;
        } else if (ret < 0) {
-               printf("Get FEC capability failed: %d\n", ret);
+               fprintf(stderr, "Get FEC capability failed: %d\n", ret);
                return;
        }
 
        num = (unsigned int)ret;
        speed_fec_capa = calloc(num, sizeof(*speed_fec_capa));
        if (speed_fec_capa == NULL) {
-               printf("Failed to alloc FEC capability buffer\n");
+               fprintf(stderr, "Failed to alloc FEC capability buffer\n");
                return;
        }
 
        ret = rte_eth_fec_get_capability(res->cmd_pid, speed_fec_capa, num);
        if (ret < 0) {
-               printf("Error getting FEC capability: %d\n", ret);
+               fprintf(stderr, "Error getting FEC capability: %d\n", ret);
                goto out;
        }
 
@@ -16717,15 +16986,15 @@ cmd_show_fec_mode_parsed(void *parsed_result,
        int ret;
 
        if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
-               printf("Invalid port id %u\n", res->cmd_pid);
+               fprintf(stderr, "Invalid port id %u\n", res->cmd_pid);
                return;
        }
        ret = rte_eth_fec_get(res->cmd_pid, &mode);
        if (ret == -ENOTSUP) {
-               printf("Function not implemented\n");
+               fprintf(stderr, "Function not implemented\n");
                return;
        } else if (ret < 0) {
-               printf("Get FEC mode failed\n");
+               fprintf(stderr, "Get FEC mode failed\n");
                return;
        }
 
@@ -16814,22 +17083,22 @@ cmd_set_port_fec_mode_parsed(
 {
        struct cmd_set_port_fec_mode *res = parsed_result;
        uint16_t port_id = res->port_id;
-       uint32_t mode;
+       uint32_t fec_capa;
        int ret;
 
-       ret = parse_fec_mode(res->fec_value, &mode);
+       ret = parse_fec_mode(res->fec_value, &fec_capa);
        if (ret < 0) {
-               printf("Unknown fec mode: %s for Port %d\n", res->fec_value,
-                       port_id);
+               fprintf(stderr, "Unknown fec mode: %s for port %d\n",
+                               res->fec_value, port_id);
                return;
        }
 
-       ret = rte_eth_fec_set(port_id, mode);
+       ret = rte_eth_fec_set(port_id, fec_capa);
        if (ret == -ENOTSUP) {
-               printf("Function not implemented\n");
+               fprintf(stderr, "Function not implemented\n");
                return;
        } else if (ret < 0) {
-               printf("Set FEC mode failed\n");
+               fprintf(stderr, "Set FEC mode failed\n");
                return;
        }
 }
@@ -16977,7 +17246,7 @@ cmd_show_rx_tx_desc_status_parsed(void *parsed_result,
        int rc;
 
        if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
-               printf("invalid port id %u\n", res->cmd_pid);
+               fprintf(stderr, "invalid port id %u\n", res->cmd_pid);
                return;
        }
 
@@ -16985,8 +17254,9 @@ cmd_show_rx_tx_desc_status_parsed(void *parsed_result,
                rc = rte_eth_rx_descriptor_status(res->cmd_pid, res->cmd_qid,
                                             res->cmd_did);
                if (rc < 0) {
-                       printf("Invalid input: queue id = %d, desc id = %d\n",
-                              res->cmd_qid, res->cmd_did);
+                       fprintf(stderr,
+                               "Invalid input: queue id = %d, desc id = %d\n",
+                               res->cmd_qid, res->cmd_did);
                        return;
                }
                if (rc == RTE_ETH_RX_DESC_AVAIL)
@@ -16999,8 +17269,9 @@ cmd_show_rx_tx_desc_status_parsed(void *parsed_result,
                rc = rte_eth_tx_descriptor_status(res->cmd_pid, res->cmd_qid,
                                             res->cmd_did);
                if (rc < 0) {
-                       printf("Invalid input: queue id = %d, desc id = %d\n",
-                              res->cmd_qid, res->cmd_did);
+                       fprintf(stderr,
+                               "Invalid input: queue id = %d, desc id = %d\n",
+                               res->cmd_qid, res->cmd_did);
                        return;
                }
                if (rc == RTE_ETH_TX_DESC_FULL)
@@ -17075,13 +17346,13 @@ cmd_show_rx_queue_desc_used_count_parsed(void *parsed_result,
        int rc;
 
        if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
-               printf("invalid port id %u\n", res->cmd_pid);
+               fprintf(stderr, "invalid port id %u\n", res->cmd_pid);
                return;
        }
 
        rc = rte_eth_rx_queue_count(res->cmd_pid, res->cmd_qid);
        if (rc < 0) {
-               printf("Invalid queueid = %d\n", res->cmd_qid);
+               fprintf(stderr, "Invalid queueid = %d\n", res->cmd_qid);
                return;
        }
        printf("Used desc count = %d\n", rc);
@@ -17183,7 +17454,8 @@ cmd_set_port_ptypes_parsed(
        ret = rte_eth_dev_get_supported_ptypes(port_id, RTE_PTYPE_ALL_MASK,
                                               NULL, 0);
        if (ret <= 0) {
-               printf("Port %d doesn't support any ptypes.\n", port_id);
+               fprintf(stderr, "Port %d doesn't support any ptypes.\n",
+                       port_id);
                return;
        }
 
@@ -17191,7 +17463,8 @@ cmd_set_port_ptypes_parsed(
 
        ret = rte_eth_dev_set_ptypes(port_id, ptype_mask, ptypes, ret);
        if (ret < 0) {
-               printf("Unable to set requested ptypes for Port %d\n", port_id);
+               fprintf(stderr, "Unable to set requested ptypes for Port %d\n",
+                       port_id);
                return;
        }
 
@@ -17354,6 +17627,7 @@ cmdline_parse_ctx_t main_ctx[] = {
        (cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon,
        (cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd,
        (cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg,
+       (cmdline_parse_inst_t *)&cmd_link_flow_control_show,
        (cmdline_parse_inst_t *)&cmd_priority_flow_control_set,
        (cmdline_parse_inst_t *)&cmd_config_dcb,
        (cmdline_parse_inst_t *)&cmd_read_reg,
@@ -17407,6 +17681,7 @@ cmdline_parse_ctx_t main_ctx[] = {
        (cmdline_parse_inst_t *)&cmd_showport_rss_hash,
        (cmdline_parse_inst_t *)&cmd_showport_rss_hash_key,
        (cmdline_parse_inst_t *)&cmd_config_rss_hash_key,
+       (cmdline_parse_inst_t *)&cmd_cleanup_txq_mbufs,
        (cmdline_parse_inst_t *)&cmd_dump,
        (cmdline_parse_inst_t *)&cmd_dump_one,
 #ifdef RTE_NET_I40E
@@ -17425,6 +17700,7 @@ cmdline_parse_ctx_t main_ctx[] = {
        (cmdline_parse_inst_t *)&cmd_enable_port_meter,
        (cmdline_parse_inst_t *)&cmd_disable_port_meter,
        (cmdline_parse_inst_t *)&cmd_del_port_meter,
+       (cmdline_parse_inst_t *)&cmd_del_port_meter_policy,
        (cmdline_parse_inst_t *)&cmd_set_port_meter_profile,
        (cmdline_parse_inst_t *)&cmd_set_port_meter_dscp_table,
        (cmdline_parse_inst_t *)&cmd_set_port_meter_stats_mask,
@@ -17555,8 +17831,9 @@ cmdline_read_from_file(const char *filename)
 
        cl = cmdline_file_new(main_ctx, "testpmd> ", filename);
        if (cl == NULL) {
-               printf("Failed to create file based cmdline context: %s\n",
-                      filename);
+               fprintf(stderr,
+                       "Failed to create file based cmdline context: %s\n",
+                       filename);
                return;
        }
 
@@ -17583,7 +17860,7 @@ prompt(void)
 
        ret = atexit(prompt_exit);
        if (ret != 0)
-               printf("Cannot set exit function for cmdline\n");
+               fprintf(stderr, "Cannot set exit function for cmdline\n");
 
        cmdline_interact(testpmd_cl);
        if (ret != 0)