From patchwork Fri Oct 13 20:37:21 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Long Li X-Patchwork-Id: 132610 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D1F08426DB; Fri, 13 Oct 2023 22:37:43 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4A1054028C; Fri, 13 Oct 2023 22:37:43 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 632FF4027D for ; Fri, 13 Oct 2023 22:37:41 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1004) id 9963520B74C0; Fri, 13 Oct 2023 13:37:40 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 9963520B74C0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxonhyperv.com; s=default; t=1697229460; bh=CQbw0hxqEyS7zhNWCRSocOXPULd3vaEBb6rWUUzUz2E=; h=From:To:Cc:Subject:Date:From; b=cNnpaC0I/vhVSwll2HUMb/YCbUvA0iUlIBYknnIqnN0qG42oqIr9w4bpyLova/gIs 1WERUQgukBlKEGrlcHAbCpKKHhZ82NGucv4ioLnF/1PkzOt7/yOQfO33C/HCsYV4gk Ab0Mrs4249xIQA2xxo0xtp9Ot81gB3G5agp1cYEk= From: longli@linuxonhyperv.com To: Ferruh Yigit , Andrew Rybchenko Cc: dev@dpdk.org, Ajay Sharma , Long Li Subject: [PATCH] net/mana: add missing \n to DP logs Date: Fri, 13 Oct 2023 13:37:21 -0700 Message-Id: <1697229441-28597-1-git-send-email-longli@linuxonhyperv.com> X-Mailer: git-send-email 1.8.3.1 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Long Li Add a missing "\n" to DP logs. This makes the logs correctly formatted. Signed-off-by: Long Li --- drivers/net/mana/mana.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/mana/mana.h b/drivers/net/mana/mana.h index 9bff90ab77..6836872dc2 100644 --- a/drivers/net/mana/mana.h +++ b/drivers/net/mana/mana.h @@ -467,7 +467,7 @@ extern int mana_logtype_init; __func__, ## args) #define DP_LOG(level, fmt, args...) \ - RTE_LOG_DP(level, PMD, fmt, ## args) + RTE_LOG_DP(level, PMD, fmt "\n", ## args) #define PMD_INIT_LOG(level, fmt, args...) \ rte_log(RTE_LOG_ ## level, mana_logtype_init, "%s(): " fmt "\n",\