From: Pavan Nikhilesh Date: Thu, 14 Nov 2019 19:31:32 +0000 (+0530) Subject: ethdev: fix log line feed X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=7988d0322954da29ff13f528f7c92ddc58f0bc5a;p=dpdk.git ethdev: fix log line feed Fix missing new line token at the end of log. Fixes: 5d308972954c ("ethdev: add mbuf RSS update as an offload") Signed-off-by: Pavan Nikhilesh Reviewed-by: Ferruh Yigit --- diff --git a/lib/librte_ethdev/rte_ethdev.c b/lib/librte_ethdev/rte_ethdev.c index c43f9f5d14..9dc4f51545 100644 --- a/lib/librte_ethdev/rte_ethdev.c +++ b/lib/librte_ethdev/rte_ethdev.c @@ -1404,7 +1404,7 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q, if (((dev_conf->rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG) == 0) && (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_RSS_HASH)) { RTE_ETHDEV_LOG(ERR, - "Ethdev port_id=%u config invalid Rx mq_mode without RSS but %s offload is requested", + "Ethdev port_id=%u config invalid Rx mq_mode without RSS but %s offload is requested\n", port_id, rte_eth_dev_rx_offload_name(DEV_RX_OFFLOAD_RSS_HASH)); ret = -EINVAL;