diff options
Diffstat (limited to '')
-rw-r--r-- | debian/patches-rt/0027-panic-Mark-emergency-section-in-oops.patch (renamed from debian/patches-rt/0030-panic-Mark-emergency-section-in-oops.patch) | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/debian/patches-rt/0030-panic-Mark-emergency-section-in-oops.patch b/debian/patches-rt/0027-panic-Mark-emergency-section-in-oops.patch index cd3d80fe60..4c382ac927 100644 --- a/debian/patches-rt/0030-panic-Mark-emergency-section-in-oops.patch +++ b/debian/patches-rt/0027-panic-Mark-emergency-section-in-oops.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 19 Sep 2023 17:07:34 +0000 -Subject: [PATCH 30/48] panic: Mark emergency section in oops -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.8/older/patches-6.8.2-rt11.tar.xz +Subject: [PATCH 27/46] panic: Mark emergency section in oops +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.9/older/patches-6.9-rt5.tar.xz Mark an emergency section beginning with oops_enter() until the end of oops_exit(). In this section, the CPU will not perform @@ -14,6 +14,7 @@ flushing mechanism that should occur after the consoles have been triggered to flush. Signed-off-by: John Ogness <john.ogness@linutronix.de> +Reviewed-by: Petr Mladek <pmladek@suse.com> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- kernel/panic.c | 2 ++ @@ -21,7 +22,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/panic.c +++ b/kernel/panic.c -@@ -634,6 +634,7 @@ bool oops_may_print(void) +@@ -638,6 +638,7 @@ bool oops_may_print(void) */ void oops_enter(void) { @@ -29,7 +30,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> tracing_off(); /* can't trust the integrity of the kernel anymore: */ debug_locks_off(); -@@ -656,6 +657,7 @@ void oops_exit(void) +@@ -660,6 +661,7 @@ void oops_exit(void) { do_oops_enter_exit(); print_oops_end_marker(); |