2021-11-12 14:07:55

by Andy Shevchenko

[permalink] [raw]
Subject: [PATCH v1 1/1] printk: Remove printk.h inclusion in percpu.h

After the commit 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
in NMI") the printk.h is not needed anymore in percpu.h.

Moreover `make headerdep` complains (an excerpt)

In file included from linux/printk.h,
from linux/dynamic_debug.h:188
from linux/printk.h:559 <-- here
from linux/percpu.h:9
from linux/idr.h:17
include/net/9p/client.h:13: warning: recursive header inclusion

Yeah, it's not a root cause of this, but removing will help to reduce
the noise.

Fixes: 42a0bb3f7138 ("printk/nmi: generic solution for safe printk in NMI")
Signed-off-by: Andy Shevchenko <[email protected]>
---
include/linux/percpu.h | 1 -
1 file changed, 1 deletion(-)

diff --git a/include/linux/percpu.h b/include/linux/percpu.h
index 98a9371133f8..ae4004e7957e 100644
--- a/include/linux/percpu.h
+++ b/include/linux/percpu.h
@@ -6,7 +6,6 @@
#include <linux/preempt.h>
#include <linux/smp.h>
#include <linux/cpumask.h>
-#include <linux/printk.h>
#include <linux/pfn.h>
#include <linux/init.h>

--
2.33.0



2021-11-12 18:15:57

by Dennis Zhou

[permalink] [raw]
Subject: Re: [PATCH v1 1/1] printk: Remove printk.h inclusion in percpu.h

Hello,

On Fri, Nov 12, 2021 at 04:07:49PM +0200, Andy Shevchenko wrote:
> After the commit 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> in NMI") the printk.h is not needed anymore in percpu.h.
>
> Moreover `make headerdep` complains (an excerpt)
>
> In file included from linux/printk.h,
> from linux/dynamic_debug.h:188
> from linux/printk.h:559 <-- here
> from linux/percpu.h:9
> from linux/idr.h:17
> include/net/9p/client.h:13: warning: recursive header inclusion
>
> Yeah, it's not a root cause of this, but removing will help to reduce
> the noise.
>
> Fixes: 42a0bb3f7138 ("printk/nmi: generic solution for safe printk in NMI")
> Signed-off-by: Andy Shevchenko <[email protected]>
> ---
> include/linux/percpu.h | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/include/linux/percpu.h b/include/linux/percpu.h
> index 98a9371133f8..ae4004e7957e 100644
> --- a/include/linux/percpu.h
> +++ b/include/linux/percpu.h
> @@ -6,7 +6,6 @@
> #include <linux/preempt.h>
> #include <linux/smp.h>
> #include <linux/cpumask.h>
> -#include <linux/printk.h>
> #include <linux/pfn.h>
> #include <linux/init.h>
>
> --
> 2.33.0
>

Acked-by: Dennis Zhou <[email protected]>

Hey Andrew, it doesn't seem like I have anything big coming through
percpu, do you mind taking this. I might have some stuff due to sh, but
I'm still working on that with them.

Thanks,
Dennis

2021-11-15 09:48:15

by Petr Mladek

[permalink] [raw]
Subject: Re: [PATCH v1 1/1] printk: Remove printk.h inclusion in percpu.h

On Fri 2021-11-12 13:15:51, Dennis Zhou wrote:
> On Fri, Nov 12, 2021 at 04:07:49PM +0200, Andy Shevchenko wrote:
> > After the commit 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> > in NMI") the printk.h is not needed anymore in percpu.h.
> >
> > Moreover `make headerdep` complains (an excerpt)
> >
> > In file included from linux/printk.h,
> > from linux/dynamic_debug.h:188
> > from linux/printk.h:559 <-- here
> > from linux/percpu.h:9
> > from linux/idr.h:17
> > include/net/9p/client.h:13: warning: recursive header inclusion
> >
> > Yeah, it's not a root cause of this, but removing will help to reduce
> > the noise.
> >
> > Fixes: 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> > in NMI")

Yup, the include was there because of printk_func_t definition that
was removed by the above commit.

Reviewed-by: Petr Mladek <[email protected]>

> Hey Andrew, it doesn't seem like I have anything big coming through
> percpu, do you mind taking this. I might have some stuff due to sh, but
> I'm still working on that with them.

I assume that either Andrew or Dennis will take this patch.

Best Regards,
Petr

2021-11-15 10:39:10

by Andy Shevchenko

[permalink] [raw]
Subject: Re: [PATCH v1 1/1] printk: Remove printk.h inclusion in percpu.h

On Mon, Nov 15, 2021 at 10:48:04AM +0100, Petr Mladek wrote:
> On Fri 2021-11-12 13:15:51, Dennis Zhou wrote:
> > On Fri, Nov 12, 2021 at 04:07:49PM +0200, Andy Shevchenko wrote:
> > > After the commit 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> > > in NMI") the printk.h is not needed anymore in percpu.h.
> > >
> > > Moreover `make headerdep` complains (an excerpt)
> > >
> > > In file included from linux/printk.h,
> > > from linux/dynamic_debug.h:188
> > > from linux/printk.h:559 <-- here
> > > from linux/percpu.h:9
> > > from linux/idr.h:17
> > > include/net/9p/client.h:13: warning: recursive header inclusion
> > >
> > > Yeah, it's not a root cause of this, but removing will help to reduce
> > > the noise.
> > >
> > > Fixes: 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> > > in NMI")
>
> Yup, the include was there because of printk_func_t definition that
> was removed by the above commit.
>
> Reviewed-by: Petr Mladek <[email protected]>
>
> > Hey Andrew, it doesn't seem like I have anything big coming through
> > percpu, do you mind taking this. I might have some stuff due to sh, but
> > I'm still working on that with them.
>
> I assume that either Andrew or Dennis will take this patch.

I assumed you take it, that's why I haven't Cc'ed Andrew in the first place,
but it seems you have a consensus with Dennis that Andrew is the best
maintainer to take this. So, I'll send v2 with tags and Cc to him.

Thanks!

--
With Best Regards,
Andy Shevchenko



2021-11-15 13:58:10

by Petr Mladek

[permalink] [raw]
Subject: Re: [PATCH v1 1/1] printk: Remove printk.h inclusion in percpu.h

On Mon 2021-11-15 12:38:03, Andy Shevchenko wrote:
> On Mon, Nov 15, 2021 at 10:48:04AM +0100, Petr Mladek wrote:
> > On Fri 2021-11-12 13:15:51, Dennis Zhou wrote:
> > > On Fri, Nov 12, 2021 at 04:07:49PM +0200, Andy Shevchenko wrote:
> > > > After the commit 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> > > > in NMI") the printk.h is not needed anymore in percpu.h.
> > > >
> > > > Moreover `make headerdep` complains (an excerpt)
> > > >
> > > > In file included from linux/printk.h,
> > > > from linux/dynamic_debug.h:188
> > > > from linux/printk.h:559 <-- here
> > > > from linux/percpu.h:9
> > > > from linux/idr.h:17
> > > > include/net/9p/client.h:13: warning: recursive header inclusion
> > > >
> > > > Yeah, it's not a root cause of this, but removing will help to reduce
> > > > the noise.
> > > >
> > > > Fixes: 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> > > > in NMI")
> >
> > Yup, the include was there because of printk_func_t definition that
> > was removed by the above commit.
> >
> > Reviewed-by: Petr Mladek <[email protected]>
> >
> > > Hey Andrew, it doesn't seem like I have anything big coming through
> > > percpu, do you mind taking this. I might have some stuff due to sh, but
> > > I'm still working on that with them.
> >
> > I assume that either Andrew or Dennis will take this patch.
>
> I assumed you take it, that's why I haven't Cc'ed Andrew in the first place,
> but it seems you have a consensus with Dennis that Andrew is the best
> maintainer to take this. So, I'll send v2 with tags and Cc to him.

No problem, I am going to take it, in a hour or so. I did not want to
make chaos when Denis asked Andrew. But it is not worth resending the patch.

Best Regards,
Petr

2021-11-15 14:24:45

by Andy Shevchenko

[permalink] [raw]
Subject: Re: [PATCH v1 1/1] printk: Remove printk.h inclusion in percpu.h

On Mon, Nov 15, 2021 at 02:57:27PM +0100, Petr Mladek wrote:
> On Mon 2021-11-15 12:38:03, Andy Shevchenko wrote:
> > On Mon, Nov 15, 2021 at 10:48:04AM +0100, Petr Mladek wrote:

...

> > I assumed you take it, that's why I haven't Cc'ed Andrew in the first place,
> > but it seems you have a consensus with Dennis that Andrew is the best
> > maintainer to take this. So, I'll send v2 with tags and Cc to him.
>
> No problem, I am going to take it, in a hour or so. I did not want to
> make chaos when Denis asked Andrew. But it is not worth resending the patch.

Thanks!

If needed something from me, just ping.

--
With Best Regards,
Andy Shevchenko



2021-11-15 14:36:41

by Petr Mladek

[permalink] [raw]
Subject: Re: [PATCH v1 1/1] printk: Remove printk.h inclusion in percpu.h

On Mon 2021-11-15 14:57:30, Petr Mladek wrote:
> On Mon 2021-11-15 12:38:03, Andy Shevchenko wrote:
> > On Mon, Nov 15, 2021 at 10:48:04AM +0100, Petr Mladek wrote:
> > > On Fri 2021-11-12 13:15:51, Dennis Zhou wrote:
> > > > On Fri, Nov 12, 2021 at 04:07:49PM +0200, Andy Shevchenko wrote:
> > > > > After the commit 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> > > > > in NMI") the printk.h is not needed anymore in percpu.h.
> > > > >
> > > > > Moreover `make headerdep` complains (an excerpt)
> > > > >
> > > > > In file included from linux/printk.h,
> > > > > from linux/dynamic_debug.h:188
> > > > > from linux/printk.h:559 <-- here
> > > > > from linux/percpu.h:9
> > > > > from linux/idr.h:17
> > > > > include/net/9p/client.h:13: warning: recursive header inclusion
> > > > >
> > > > > Yeah, it's not a root cause of this, but removing will help to reduce
> > > > > the noise.
> > > > >
> > > > > Fixes: 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> > > > > in NMI")
> > >
> > > Yup, the include was there because of printk_func_t definition that
> > > was removed by the above commit.
> > >
> > > Reviewed-by: Petr Mladek <[email protected]>
> > >
> > > > Hey Andrew, it doesn't seem like I have anything big coming through
> > > > percpu, do you mind taking this. I might have some stuff due to sh, but
> > > > I'm still working on that with them.
> > >
> > > I assume that either Andrew or Dennis will take this patch.
> >
> > I assumed you take it, that's why I haven't Cc'ed Andrew in the first place,
> > but it seems you have a consensus with Dennis that Andrew is the best
> > maintainer to take this. So, I'll send v2 with tags and Cc to him.
>
> No problem, I am going to take it, in a hour or so. I did not want to
> make chaos when Denis asked Andrew. But it is not worth resending the patch.

The patch is comitted in printk/linux.git, branch for-5.16-fixup.

I am going to add it into pull request for 5.16-rc2 with another fix.

Best Regards,
Petr

2021-11-15 15:05:04

by Dennis Zhou

[permalink] [raw]
Subject: Re: [PATCH v1 1/1] printk: Remove printk.h inclusion in percpu.h

On Mon, Nov 15, 2021 at 03:34:04PM +0100, Petr Mladek wrote:
> On Mon 2021-11-15 14:57:30, Petr Mladek wrote:
> > On Mon 2021-11-15 12:38:03, Andy Shevchenko wrote:
> > > On Mon, Nov 15, 2021 at 10:48:04AM +0100, Petr Mladek wrote:
> > > > On Fri 2021-11-12 13:15:51, Dennis Zhou wrote:
> > > > > On Fri, Nov 12, 2021 at 04:07:49PM +0200, Andy Shevchenko wrote:
> > > > > > After the commit 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> > > > > > in NMI") the printk.h is not needed anymore in percpu.h.
> > > > > >
> > > > > > Moreover `make headerdep` complains (an excerpt)
> > > > > >
> > > > > > In file included from linux/printk.h,
> > > > > > from linux/dynamic_debug.h:188
> > > > > > from linux/printk.h:559 <-- here
> > > > > > from linux/percpu.h:9
> > > > > > from linux/idr.h:17
> > > > > > include/net/9p/client.h:13: warning: recursive header inclusion
> > > > > >
> > > > > > Yeah, it's not a root cause of this, but removing will help to reduce
> > > > > > the noise.
> > > > > >
> > > > > > Fixes: 42a0bb3f7138 ("printk/nmi: generic solution for safe printk
> > > > > > in NMI")
> > > >
> > > > Yup, the include was there because of printk_func_t definition that
> > > > was removed by the above commit.
> > > >
> > > > Reviewed-by: Petr Mladek <[email protected]>
> > > >
> > > > > Hey Andrew, it doesn't seem like I have anything big coming through
> > > > > percpu, do you mind taking this. I might have some stuff due to sh, but
> > > > > I'm still working on that with them.
> > > >
> > > > I assume that either Andrew or Dennis will take this patch.
> > >
> > > I assumed you take it, that's why I haven't Cc'ed Andrew in the first place,
> > > but it seems you have a consensus with Dennis that Andrew is the best
> > > maintainer to take this. So, I'll send v2 with tags and Cc to him.
> >
> > No problem, I am going to take it, in a hour or so. I did not want to
> > make chaos when Denis asked Andrew. But it is not worth resending the patch.
>
> The patch is comitted in printk/linux.git, branch for-5.16-fixup.
>
> I am going to add it into pull request for 5.16-rc2 with another fix.
>
> Best Regards,
> Petr

Thanks Petr!

In general I would take it, it just depends on other circumstances such
as if I'm carrying anything or if there is any other bigger issues with
other mm. Right now I'm dealing with mm as a fix for hotplug in percpu
has been pulled and I'm not terribly happy about it.

I appreciate being looped in and made aware of the changes. Thank you
Andy and Petr.

Thanks,
Dennis