From patchwork Thu Nov 14 19:31:32 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavan Nikhilesh Bhagavatula X-Patchwork-Id: 63027 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 59C36A04C5; Thu, 14 Nov 2019 20:31:39 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 450A42BAF; Thu, 14 Nov 2019 20:31:38 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 969662BA8 for ; Thu, 14 Nov 2019 20:31:37 +0100 (CET) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id xAEJUmmV008029; Thu, 14 Nov 2019 11:31:36 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=yhEZhEahW15oZQQ+z3PmFSciiqZ1Z4CUFLHYhgjfS/Y=; b=nWtKboCG0hnmraldn+Ders0tFxbW5cXaxpKJgb7h3R0y6IYc3fFRQQMYPwcOrWJlB9bn KnO1Im40ESH1UBidob0Ox8i5YsgV/3NWuajIwRRl5cQJGi8D7KiLN+FaJf8d2tF7+OPi KfNpEDZRoJp1dHueO89QMakPaIsxt/FcmbGzycDNbR09namKYR/szqG9mbUfdYLrcGKD 3wTocYunA3xDKPHlBM8rACDcx7iEWsN+H9Vyf//nreuGw6q33lFWTXMu5zV6wHPBpGxr Xd9UdHHe50KUNWmSZbbq9LCQBevn9OcpoYi4/zwBrWxftAZeEByzlQeYU0oWSRbzQLO3 bg== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0b-0016f401.pphosted.com with ESMTP id 2w8whqv99j-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 14 Nov 2019 11:31:36 -0800 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 14 Nov 2019 11:31:34 -0800 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 14 Nov 2019 11:31:34 -0800 Received: from BG-LT7430.marvell.com (unknown [10.28.17.62]) by maili.marvell.com (Postfix) with ESMTP id 75F493F703F; Thu, 14 Nov 2019 11:31:33 -0800 (PST) From: To: CC: , Pavan Nikhilesh Date: Fri, 15 Nov 2019 01:01:32 +0530 Message-ID: <20191114193132.3095-1-pbhagavatula@marvell.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.95,18.0.572 definitions=2019-11-14_05:2019-11-14,2019-11-14 signatures=0 Subject: [dpdk-dev] [PATCH] ethdev: fix missing new line token at end of line X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Pavan Nikhilesh Fix missing new line token at the end of log. Fixes: 5d308972954 ("ethdev: add mbuf RSS update as an offload") Signed-off-by: Pavan Nikhilesh Reviewed-by: Ferruh Yigit --- lib/librte_ethdev/rte_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_ethdev/rte_ethdev.c b/lib/librte_ethdev/rte_ethdev.c index 76d4a20ed..8f48e8d65 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;