From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id DBA3B45DB9 for ; Wed, 27 Nov 2024 18:20:22 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D4318402DE; Wed, 27 Nov 2024 18:20:22 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 256E74068A for ; Wed, 27 Nov 2024 18:20:21 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1732728020; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=oKWQicC5eAReg/6KGd7KPK4lnK+pz881T3NpO4tO0Oc=; b=gP0lP9nV7H5+s766S92lszMt+u+uGKNyi9ty/cU23dEBi3TLYrnCZM9UpcQP4aDivdBgdU tXmXOZl7mEya6umHGrbYXrj7g2xtfM3hPBAd9qaAj1qfHbizAPkt81shzszjc/mrS/f7Vc So4/LNZTViXn2iyn845RH773QJfHAOw= Received: from mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-444-5HGh8DhIO7e6NrTo9MAfSQ-1; Wed, 27 Nov 2024 12:20:19 -0500 X-MC-Unique: 5HGh8DhIO7e6NrTo9MAfSQ-1 X-Mimecast-MFC-AGG-ID: 5HGh8DhIO7e6NrTo9MAfSQ Received: from mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 270421955BF4; Wed, 27 Nov 2024 17:20:18 +0000 (UTC) Received: from rh.redhat.com (unknown [10.39.192.52]) by mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 112F0300019E; Wed, 27 Nov 2024 17:20:16 +0000 (UTC) From: Kevin Traynor To: Rakesh Kudurumalla Cc: dpdk stable Subject: patch 'common/cnxk: fix base log level' has been queued to stable release 21.11.9 Date: Wed, 27 Nov 2024 17:17:29 +0000 Message-ID: <20241127171916.690404-22-ktraynor@redhat.com> In-Reply-To: <20241127171916.690404-1-ktraynor@redhat.com> References: <20241127171916.690404-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.4 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: lzhlwWblS2VdsBTSUzoPwz_i3CjfCLqcvEBVWwXyMXs_1732728018 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit content-type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Hi, FYI, your patch has been queued to stable release 21.11.9 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 12/02/24. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable/commit/5065e8aeb5f0f9005ae3014a298ea9a3fb48f380 Thanks. Kevin --- >From 5065e8aeb5f0f9005ae3014a298ea9a3fb48f380 Mon Sep 17 00:00:00 2001 From: Rakesh Kudurumalla Date: Tue, 1 Oct 2024 14:17:10 +0530 Subject: [PATCH] common/cnxk: fix base log level [ upstream commit adc561fc5352bd1f1c8e736a33bb9b03bbb95b3f ] In a247fcd94598 changeset, the PMD log type is removed and driver specific log type is added for CNXK. This patch changes loglevel of CNXK from NOTICE to INFO to display logs while running applications Fixes: a247fcd94598 ("drivers: use dedicated log macros instead of PMD logtype") Signed-off-by: Rakesh Kudurumalla --- drivers/common/cnxk/roc_platform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/cnxk/roc_platform.c b/drivers/common/cnxk/roc_platform.c index 6cf0c4113e..e5fab69731 100644 --- a/drivers/common/cnxk/roc_platform.c +++ b/drivers/common/cnxk/roc_platform.c @@ -61,5 +61,5 @@ roc_plt_init(void) } -RTE_LOG_REGISTER(cnxk_logtype_base, pmd.cnxk.base, NOTICE); +RTE_LOG_REGISTER(cnxk_logtype_base, pmd.cnxk.base, INFO); RTE_LOG_REGISTER(cnxk_logtype_mbox, pmd.cnxk.mbox, NOTICE); RTE_LOG_REGISTER(cnxk_logtype_cpt, pmd.crypto.cnxk, NOTICE); -- 2.47.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2024-11-27 17:17:39.004961016 +0000 +++ 0022-common-cnxk-fix-base-log-level.patch 2024-11-27 17:17:38.177269124 +0000 @@ -1 +1 @@ -From adc561fc5352bd1f1c8e736a33bb9b03bbb95b3f Mon Sep 17 00:00:00 2001 +From 5065e8aeb5f0f9005ae3014a298ea9a3fb48f380 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit adc561fc5352bd1f1c8e736a33bb9b03bbb95b3f ] + @@ -12 +13,0 @@ -Cc: stable@dpdk.org @@ -20 +21 @@ -index 30379c7e5e..f1e0a93d97 100644 +index 6cf0c4113e..e5fab69731 100644 @@ -23 +24 @@ -@@ -86,5 +86,5 @@ roc_plt_init(void) +@@ -61,5 +61,5 @@ roc_plt_init(void) @@ -26,4 +27,4 @@ --RTE_LOG_REGISTER_SUFFIX(cnxk_logtype_base, base, NOTICE); -+RTE_LOG_REGISTER_SUFFIX(cnxk_logtype_base, base, INFO); - RTE_LOG_REGISTER_SUFFIX(cnxk_logtype_mbox, mbox, NOTICE); - RTE_LOG_REGISTER_SUFFIX(cnxk_logtype_cpt, crypto, NOTICE); +-RTE_LOG_REGISTER(cnxk_logtype_base, pmd.cnxk.base, NOTICE); ++RTE_LOG_REGISTER(cnxk_logtype_base, pmd.cnxk.base, INFO); + RTE_LOG_REGISTER(cnxk_logtype_mbox, pmd.cnxk.mbox, NOTICE); + RTE_LOG_REGISTER(cnxk_logtype_cpt, pmd.crypto.cnxk, NOTICE);