* [PATCH] dma/dpaa2: fix logtype register
@ 2023-12-18 15:46 David Marchand
2023-12-18 16:34 ` Stephen Hemminger
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: David Marchand @ 2023-12-18 15:46 UTC (permalink / raw)
To: dev; +Cc: stable, Gagandeep Singh, Hemant Agrawal, Nipun Gupta
This driver logtype was not initialized so its logs would end up under
the 0 logtype, iow, RTE_LOGTYPE_EAL.
This issue comes from a typo on the logtype variable name.
Fixes: 8caf8427f85a ("dma/dpaa2: introduce driver skeleton")
Cc: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
drivers/dma/dpaa2/dpaa2_qdma.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/dma/dpaa2/dpaa2_qdma.c b/drivers/dma/dpaa2/dpaa2_qdma.c
index 8968bb853b..2c91ceec13 100644
--- a/drivers/dma/dpaa2/dpaa2_qdma.c
+++ b/drivers/dma/dpaa2/dpaa2_qdma.c
@@ -16,9 +16,6 @@
#define DPAA2_QDMA_PREFETCH "prefetch"
-/* Dynamic log type identifier */
-int dpaa2_qdma_logtype;
-
uint32_t dpaa2_coherent_no_alloc_cache;
uint32_t dpaa2_coherent_alloc_cache;
@@ -1699,4 +1696,4 @@ static struct rte_dpaa2_driver rte_dpaa2_qdma_pmd = {
RTE_PMD_REGISTER_DPAA2(dpaa2_qdma, rte_dpaa2_qdma_pmd);
RTE_PMD_REGISTER_PARAM_STRING(dpaa2_qdma,
"no_prefetch=<int> ");
-RTE_LOG_REGISTER_DEFAULT(dpaa_qdma2_logtype, INFO);
+RTE_LOG_REGISTER_DEFAULT(dpaa2_qdma_logtype, INFO);
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] dma/dpaa2: fix logtype register
2023-12-18 15:46 [PATCH] dma/dpaa2: fix logtype register David Marchand
@ 2023-12-18 16:34 ` Stephen Hemminger
2023-12-18 16:43 ` Hemant Agrawal
2024-01-19 11:08 ` David Marchand
2 siblings, 0 replies; 4+ messages in thread
From: Stephen Hemminger @ 2023-12-18 16:34 UTC (permalink / raw)
To: David Marchand; +Cc: dev, stable, Gagandeep Singh, Hemant Agrawal, Nipun Gupta
On Mon, 18 Dec 2023 16:46:39 +0100
David Marchand <david.marchand@redhat.com> wrote:
> This driver logtype was not initialized so its logs would end up under
> the 0 logtype, iow, RTE_LOGTYPE_EAL.
> This issue comes from a typo on the logtype variable name.
>
> Fixes: 8caf8427f85a ("dma/dpaa2: introduce driver skeleton")
> Cc: stable@dpdk.org
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
Good catch
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH] dma/dpaa2: fix logtype register
2023-12-18 15:46 [PATCH] dma/dpaa2: fix logtype register David Marchand
2023-12-18 16:34 ` Stephen Hemminger
@ 2023-12-18 16:43 ` Hemant Agrawal
2024-01-19 11:08 ` David Marchand
2 siblings, 0 replies; 4+ messages in thread
From: Hemant Agrawal @ 2023-12-18 16:43 UTC (permalink / raw)
To: David Marchand, dev; +Cc: stable, Gagandeep Singh, Nipun Gupta
[-- Attachment #1: Type: text/plain, Size: 1597 bytes --]
> -----Original Message-----
> From: David Marchand <david.marchand@redhat.com>
> Sent: Monday, December 18, 2023 9:17 PM
> To: dev@dpdk.org
> Cc: stable@dpdk.org; Gagandeep Singh <G.Singh@nxp.com>; Hemant Agrawal
> <hemant.agrawal@nxp.com>; Nipun Gupta <nipun.gupta@amd.com>
> Subject: [PATCH] dma/dpaa2: fix logtype register
> Importance: High
>
> This driver logtype was not initialized so its logs would end up under the
0
> logtype, iow, RTE_LOGTYPE_EAL.
> This issue comes from a typo on the logtype variable name.
>
> Fixes: 8caf8427f85a ("dma/dpaa2: introduce driver skeleton")
> Cc: stable@dpdk.org
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
[Hemant] Thanks
Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
> drivers/dma/dpaa2/dpaa2_qdma.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/dma/dpaa2/dpaa2_qdma.c
> b/drivers/dma/dpaa2/dpaa2_qdma.c index 8968bb853b..2c91ceec13 100644
> --- a/drivers/dma/dpaa2/dpaa2_qdma.c
> +++ b/drivers/dma/dpaa2/dpaa2_qdma.c
> @@ -16,9 +16,6 @@
>
> #define DPAA2_QDMA_PREFETCH "prefetch"
>
> -/* Dynamic log type identifier */
> -int dpaa2_qdma_logtype;
> -
> uint32_t dpaa2_coherent_no_alloc_cache; uint32_t
> dpaa2_coherent_alloc_cache;
>
> @@ -1699,4 +1696,4 @@ static struct rte_dpaa2_driver
> rte_dpaa2_qdma_pmd = { RTE_PMD_REGISTER_DPAA2(dpaa2_qdma,
> rte_dpaa2_qdma_pmd); RTE_PMD_REGISTER_PARAM_STRING(dpaa2_qdma,
> "no_prefetch=<int> ");
> -RTE_LOG_REGISTER_DEFAULT(dpaa_qdma2_logtype, INFO);
> +RTE_LOG_REGISTER_DEFAULT(dpaa2_qdma_logtype, INFO);
> --
> 2.43.0
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 9818 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] dma/dpaa2: fix logtype register
2023-12-18 15:46 [PATCH] dma/dpaa2: fix logtype register David Marchand
2023-12-18 16:34 ` Stephen Hemminger
2023-12-18 16:43 ` Hemant Agrawal
@ 2024-01-19 11:08 ` David Marchand
2 siblings, 0 replies; 4+ messages in thread
From: David Marchand @ 2024-01-19 11:08 UTC (permalink / raw)
To: dev
Cc: stable, Gagandeep Singh, Hemant Agrawal, Nipun Gupta, Stephen Hemminger
On Mon, Dec 18, 2023 at 4:46 PM David Marchand
<david.marchand@redhat.com> wrote:
>
> This driver logtype was not initialized so its logs would end up under
> the 0 logtype, iow, RTE_LOGTYPE_EAL.
> This issue comes from a typo on the logtype variable name.
>
> Fixes: 8caf8427f85a ("dma/dpaa2: introduce driver skeleton")
> Cc: stable@dpdk.org
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
Applied, thanks.
--
David Marchand
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-19 11:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-18 15:46 [PATCH] dma/dpaa2: fix logtype register David Marchand
2023-12-18 16:34 ` Stephen Hemminger
2023-12-18 16:43 ` Hemant Agrawal
2024-01-19 11:08 ` David Marchand
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).