Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
bf6d0d1e
Commit
bf6d0d1e
authored
Nov 18, 2021
by
Petr Mladek
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'rework/printk_safe-removal' into for-linus
parents
a0ddee65
5d5e4522
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
0 deletions
+21
-0
arch/powerpc/kernel/watchdog.c
arch/powerpc/kernel/watchdog.c
+6
-0
include/linux/printk.h
include/linux/printk.h
+4
-0
kernel/printk/printk.c
kernel/printk/printk.c
+5
-0
lib/nmi_backtrace.c
lib/nmi_backtrace.c
+6
-0
No files found.
arch/powerpc/kernel/watchdog.c
View file @
bf6d0d1e
...
...
@@ -187,6 +187,12 @@ static void watchdog_smp_panic(int cpu, u64 tb)
if
(
sysctl_hardlockup_all_cpu_backtrace
)
trigger_allbutself_cpu_backtrace
();
/*
* Force flush any remote buffers that might be stuck in IRQ context
* and therefore could not run their irq_work.
*/
printk_trigger_flush
();
if
(
hardlockup_panic
)
nmi_panic
(
NULL
,
"Hard LOCKUP"
);
...
...
include/linux/printk.h
View file @
bf6d0d1e
...
...
@@ -198,6 +198,7 @@ void dump_stack_print_info(const char *log_lvl);
void
show_regs_print_info
(
const
char
*
log_lvl
);
extern
asmlinkage
void
dump_stack_lvl
(
const
char
*
log_lvl
)
__cold
;
extern
asmlinkage
void
dump_stack
(
void
)
__cold
;
void
printk_trigger_flush
(
void
);
#else
static
inline
__printf
(
1
,
0
)
int
vprintk
(
const
char
*
s
,
va_list
args
)
...
...
@@ -274,6 +275,9 @@ static inline void dump_stack_lvl(const char *log_lvl)
static
inline
void
dump_stack
(
void
)
{
}
static
inline
void
printk_trigger_flush
(
void
)
{
}
#endif
#ifdef CONFIG_SMP
...
...
kernel/printk/printk.c
View file @
bf6d0d1e
...
...
@@ -3253,6 +3253,11 @@ void defer_console_output(void)
preempt_enable
();
}
void
printk_trigger_flush
(
void
)
{
defer_console_output
();
}
int
vprintk_deferred
(
const
char
*
fmt
,
va_list
args
)
{
int
r
;
...
...
lib/nmi_backtrace.c
View file @
bf6d0d1e
...
...
@@ -75,6 +75,12 @@ void nmi_trigger_cpumask_backtrace(const cpumask_t *mask,
touch_softlockup_watchdog
();
}
/*
* Force flush any remote buffers that might be stuck in IRQ context
* and therefore could not run their irq_work.
*/
printk_trigger_flush
();
clear_bit_unlock
(
0
,
&
backtrace_flag
);
put_cpu
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment