* [PATCH 1/1] common/cnxk: updated loglevel from NOTICE to INFO
@ 2024-08-22 6:24 Rakesh Kudurumalla
2024-09-19 18:09 ` Jerin Jacob
2024-10-01 8:47 ` [PATCH v2 1/1] common/cnxk: fix " Rakesh Kudurumalla
0 siblings, 2 replies; 4+ messages in thread
From: Rakesh Kudurumalla @ 2024-08-22 6:24 UTC (permalink / raw)
To: Nithin Dabilpuram, Kiran Kumar K, Sunil Kumar Kori, Satha Rao,
Harman Kalra
Cc: dev, jerinj, Rakesh Kudurumalla
In latest dpdk 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
Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>
---
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 30379c7e5e..f1e0a93d97 100644
--- a/drivers/common/cnxk/roc_platform.c
+++ b/drivers/common/cnxk/roc_platform.c
@@ -85,7 +85,7 @@ roc_plt_init(void)
return 0;
}
-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_SUFFIX(cnxk_logtype_ml, ml, NOTICE);
--
2.25.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] common/cnxk: updated loglevel from NOTICE to INFO
2024-08-22 6:24 [PATCH 1/1] common/cnxk: updated loglevel from NOTICE to INFO Rakesh Kudurumalla
@ 2024-09-19 18:09 ` Jerin Jacob
2024-10-01 8:47 ` [PATCH v2 1/1] common/cnxk: fix " Rakesh Kudurumalla
1 sibling, 0 replies; 4+ messages in thread
From: Jerin Jacob @ 2024-09-19 18:09 UTC (permalink / raw)
To: Rakesh Kudurumalla
Cc: Nithin Dabilpuram, Kiran Kumar K, Sunil Kumar Kori, Satha Rao,
Harman Kalra, dev, jerinj
On Thu, Aug 22, 2024 at 12:03 PM Rakesh Kudurumalla
<rkudurumalla@marvell.com> wrote:
>
> In latest dpdk 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
Could you add Fixes:
And change subject to common/cnxk: fix ...
>
> Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>
> ---
> 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 30379c7e5e..f1e0a93d97 100644
> --- a/drivers/common/cnxk/roc_platform.c
> +++ b/drivers/common/cnxk/roc_platform.c
> @@ -85,7 +85,7 @@ roc_plt_init(void)
> return 0;
> }
>
> -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_SUFFIX(cnxk_logtype_ml, ml, NOTICE);
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 1/1] common/cnxk: fix updated loglevel from NOTICE to INFO
2024-08-22 6:24 [PATCH 1/1] common/cnxk: updated loglevel from NOTICE to INFO Rakesh Kudurumalla
2024-09-19 18:09 ` Jerin Jacob
@ 2024-10-01 8:47 ` Rakesh Kudurumalla
2024-10-03 10:17 ` Jerin Jacob
1 sibling, 1 reply; 4+ messages in thread
From: Rakesh Kudurumalla @ 2024-10-01 8:47 UTC (permalink / raw)
To: Nithin Dabilpuram, Kiran Kumar K, Sunil Kumar Kori, Satha Rao,
Harman Kalra
Cc: dev, jerinj, Rakesh Kudurumalla
In latest dpdk 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: 455a771fd6f1 ("common/cnxk: fix segregation of logs based on module")
Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>
---
V2: Addressed comments and added fixes
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 30379c7e5e..f1e0a93d97 100644
--- a/drivers/common/cnxk/roc_platform.c
+++ b/drivers/common/cnxk/roc_platform.c
@@ -85,7 +85,7 @@ roc_plt_init(void)
return 0;
}
-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_SUFFIX(cnxk_logtype_ml, ml, NOTICE);
--
2.25.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 1/1] common/cnxk: fix updated loglevel from NOTICE to INFO
2024-10-01 8:47 ` [PATCH v2 1/1] common/cnxk: fix " Rakesh Kudurumalla
@ 2024-10-03 10:17 ` Jerin Jacob
0 siblings, 0 replies; 4+ messages in thread
From: Jerin Jacob @ 2024-10-03 10:17 UTC (permalink / raw)
To: Rakesh Kudurumalla
Cc: Nithin Dabilpuram, Kiran Kumar K, Sunil Kumar Kori, Satha Rao,
Harman Kalra, dev, jerinj
On Tue, Oct 1, 2024 at 2:24 PM Rakesh Kudurumalla
<rkudurumalla@marvell.com> wrote:
>
> In latest dpdk 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: 455a771fd6f1 ("common/cnxk: fix segregation of logs based on module")
>
> Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>
Updated the git commit as follows and applied to
dpdk-next-net-mrvl/for-main. Thanks
common/cnxk: fix loglevel from NOTICE to INFO
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")
Cc: stable@dpdk.org
Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-03 10:17 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-22 6:24 [PATCH 1/1] common/cnxk: updated loglevel from NOTICE to INFO Rakesh Kudurumalla
2024-09-19 18:09 ` Jerin Jacob
2024-10-01 8:47 ` [PATCH v2 1/1] common/cnxk: fix " Rakesh Kudurumalla
2024-10-03 10:17 ` Jerin Jacob
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).