All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] panic: use angle-bracket include for panic.h
@ 2025-08-29  5:13 Jinchao Wang
  2025-08-29  5:18 ` Jinchao Wang
  2025-08-29  7:34 ` John Ogness
  0 siblings, 2 replies; 4+ messages in thread
From: Jinchao Wang @ 2025-08-29  5:13 UTC (permalink / raw)
  To: Andrew Morton, John Ogness, Qianqiang Liu; +Cc: linux-kernel, Jinchao Wang

Replace quoted includes of panic.h with `#include <linux/panic.h>` for
consistency across the kernel.

Signed-off-by: Jinchao Wang <wangjinchao600@gmail.com>
---
 kernel/crash_core.c    | 2 +-
 kernel/printk/nbcon.c  | 2 +-
 kernel/printk/printk.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kernel/crash_core.c b/kernel/crash_core.c
index bb38bbaf3a26..a5e8523dd6eb 100644
--- a/kernel/crash_core.c
+++ b/kernel/crash_core.c
@@ -4,7 +4,6 @@
  * Copyright (C) 2002-2004 Eric Biederman  <ebiederm@xmission.com>
  */
 
-#include "linux/panic.h"
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 
 #include <linux/buildid.h>
@@ -23,6 +22,7 @@
 #include <linux/btf.h>
 #include <linux/objtool.h>
 #include <linux/delay.h>
+#include <linux/panic.h>
 
 #include <asm/page.h>
 #include <asm/sections.h>
diff --git a/kernel/printk/nbcon.c b/kernel/printk/nbcon.c
index 171480135830..558ef3177976 100644
--- a/kernel/printk/nbcon.c
+++ b/kernel/printk/nbcon.c
@@ -2,7 +2,6 @@
 // Copyright (C) 2022 Linutronix GmbH, John Ogness
 // Copyright (C) 2022 Intel, Thomas Gleixner
 
-#include "linux/panic.h"
 #include <linux/atomic.h>
 #include <linux/bug.h>
 #include <linux/console.h>
@@ -13,6 +12,7 @@
 #include <linux/irqflags.h>
 #include <linux/kthread.h>
 #include <linux/minmax.h>
+#include <linux/panic.h>
 #include <linux/percpu.h>
 #include <linux/preempt.h>
 #include <linux/slab.h>
diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
index 236f03937107..5aee9ffb16b9 100644
--- a/kernel/printk/printk.c
+++ b/kernel/printk/printk.c
@@ -17,7 +17,6 @@
  *	01Mar01 Andrew Morton
  */
 
-#include "linux/panic.h"
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 
 #include <linux/kernel.h>
@@ -49,6 +48,7 @@
 #include <linux/sched/clock.h>
 #include <linux/sched/debug.h>
 #include <linux/sched/task_stack.h>
+#include <linux/panic.h>
 
 #include <linux/uaccess.h>
 #include <asm/sections.h>
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] panic: use angle-bracket include for panic.h
  2025-08-29  5:13 [PATCH] panic: use angle-bracket include for panic.h Jinchao Wang
@ 2025-08-29  5:18 ` Jinchao Wang
  2025-08-29  7:34 ` John Ogness
  1 sibling, 0 replies; 4+ messages in thread
From: Jinchao Wang @ 2025-08-29  5:18 UTC (permalink / raw)
  To: Andrew Morton, John Ogness, Qianqiang Liu; +Cc: linux-kernel

On 8/29/25 13:13, Jinchao Wang wrote:
> Replace quoted includes of panic.h with `#include <linux/panic.h>` for
> consistency across the kernel.
> 
> Signed-off-by: Jinchao Wang <wangjinchao600@gmail.com>
> ---
>   kernel/crash_core.c    | 2 +-
>   kernel/printk/nbcon.c  | 2 +-
>   kernel/printk/printk.c | 2 +-
This patch is based on the mm-nonmm-unstable branch, where the previous
"panic status function family" series was merged.

-- 
Best regards,
Jinchao

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] panic: use angle-bracket include for panic.h
  2025-08-29  5:13 [PATCH] panic: use angle-bracket include for panic.h Jinchao Wang
  2025-08-29  5:18 ` Jinchao Wang
@ 2025-08-29  7:34 ` John Ogness
  2025-08-29 14:03   ` Petr Mladek
  1 sibling, 1 reply; 4+ messages in thread
From: John Ogness @ 2025-08-29  7:34 UTC (permalink / raw)
  To: Jinchao Wang, Andrew Morton, Qianqiang Liu
  Cc: linux-kernel, Jinchao Wang, Petr Mladek, Steven Rostedt,
	Sergey Senozhatsky

Added CC printk folks...

On 2025-08-29, Jinchao Wang <wangjinchao600@gmail.com> wrote:
> Replace quoted includes of panic.h with `#include <linux/panic.h>` for
> consistency across the kernel.
>
> Signed-off-by: Jinchao Wang <wangjinchao600@gmail.com>

Reviewed-by: John Ogness <john.ogness@linutronix.de>

> ---
>  kernel/crash_core.c    | 2 +-
>  kernel/printk/nbcon.c  | 2 +-
>  kernel/printk/printk.c | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/kernel/crash_core.c b/kernel/crash_core.c
> index bb38bbaf3a26..a5e8523dd6eb 100644
> --- a/kernel/crash_core.c
> +++ b/kernel/crash_core.c
> @@ -4,7 +4,6 @@
>   * Copyright (C) 2002-2004 Eric Biederman  <ebiederm@xmission.com>
>   */
>  
> -#include "linux/panic.h"
>  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
>  
>  #include <linux/buildid.h>
> @@ -23,6 +22,7 @@
>  #include <linux/btf.h>
>  #include <linux/objtool.h>
>  #include <linux/delay.h>
> +#include <linux/panic.h>
>  
>  #include <asm/page.h>
>  #include <asm/sections.h>
> diff --git a/kernel/printk/nbcon.c b/kernel/printk/nbcon.c
> index 171480135830..558ef3177976 100644
> --- a/kernel/printk/nbcon.c
> +++ b/kernel/printk/nbcon.c
> @@ -2,7 +2,6 @@
>  // Copyright (C) 2022 Linutronix GmbH, John Ogness
>  // Copyright (C) 2022 Intel, Thomas Gleixner
>  
> -#include "linux/panic.h"
>  #include <linux/atomic.h>
>  #include <linux/bug.h>
>  #include <linux/console.h>
> @@ -13,6 +12,7 @@
>  #include <linux/irqflags.h>
>  #include <linux/kthread.h>
>  #include <linux/minmax.h>
> +#include <linux/panic.h>
>  #include <linux/percpu.h>
>  #include <linux/preempt.h>
>  #include <linux/slab.h>
> diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
> index 236f03937107..5aee9ffb16b9 100644
> --- a/kernel/printk/printk.c
> +++ b/kernel/printk/printk.c
> @@ -17,7 +17,6 @@
>   *	01Mar01 Andrew Morton
>   */
>  
> -#include "linux/panic.h"
>  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
>  
>  #include <linux/kernel.h>
> @@ -49,6 +48,7 @@
>  #include <linux/sched/clock.h>
>  #include <linux/sched/debug.h>
>  #include <linux/sched/task_stack.h>
> +#include <linux/panic.h>
>  
>  #include <linux/uaccess.h>
>  #include <asm/sections.h>
> -- 
> 2.43.0

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] panic: use angle-bracket include for panic.h
  2025-08-29  7:34 ` John Ogness
@ 2025-08-29 14:03   ` Petr Mladek
  0 siblings, 0 replies; 4+ messages in thread
From: Petr Mladek @ 2025-08-29 14:03 UTC (permalink / raw)
  To: John Ogness
  Cc: Jinchao Wang, Andrew Morton, Qianqiang Liu, linux-kernel,
	Steven Rostedt, Sergey Senozhatsky

On Fri 2025-08-29 09:40:41, John Ogness wrote:
> Added CC printk folks...

Thanks for adding me into Cc.

> On 2025-08-29, Jinchao Wang <wangjinchao600@gmail.com> wrote:
> > Replace quoted includes of panic.h with `#include <linux/panic.h>` for
> > consistency across the kernel.
> >
> > Signed-off-by: Jinchao Wang <wangjinchao600@gmail.com>
> 
> Reviewed-by: John Ogness <john.ogness@linutronix.de>

Reviewed-by: Petr Mladek <pmladek@suse.com>

Best Regards,
Petr

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-08-29 14:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-29  5:13 [PATCH] panic: use angle-bracket include for panic.h Jinchao Wang
2025-08-29  5:18 ` Jinchao Wang
2025-08-29  7:34 ` John Ogness
2025-08-29 14:03   ` Petr Mladek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.