forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'printk-for-6.6' of git://git.kernel.org/pub/scm/linux/kern…
…el/git/printk/linux Pull printk updates from Petr Mladek: - Do not try to get the console lock when it is not need or useful in panic() - Replace the global console_suspended state by a per-console flag - Export symbols needed for dumping the raw printk buffer in panic() - Fix documentation of printf formats for integer types - Moved Sergey Senozhatsky to the reviewer role - Misc cleanups * tag 'printk-for-6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux: printk: export symbols for debug modules lib: test_scanf: Add explicit type cast to result initialization in test_number_prefix() printk: ringbuffer: Fix truncating buffer size min_t cast printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic() printk: Add per-console suspended state printk: Consolidate console deferred printing printk: Do not take console lock for console_flush_on_panic() printk: Keep non-panic-CPUs out of console lock printk: Reduce console_unblank() usage in unsafe scenarios kdb: Do not assume write() callback available docs: printk-formats: Treat char as always unsigned docs: printk-formats: Fix hex printing of signed values MAINTAINERS: adjust printk/vsprintf entries
- Loading branch information
Showing
9 changed files
with
167 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17176,9 +17176,9 @@ F: kernel/sched/psi.c | |
|
||
PRINTK | ||
M: Petr Mladek <[email protected]> | ||
M: Sergey Senozhatsky <[email protected]> | ||
R: Steven Rostedt <[email protected]> | ||
R: John Ogness <[email protected]> | ||
R: Sergey Senozhatsky <[email protected]> | ||
S: Maintained | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git | ||
F: include/linux/printk.h | ||
|
@@ -23072,9 +23072,9 @@ F: drivers/net/vrf.c | |
VSPRINTF | ||
M: Petr Mladek <[email protected]> | ||
M: Steven Rostedt <[email protected]> | ||
M: Sergey Senozhatsky <[email protected]> | ||
R: Andy Shevchenko <[email protected]> | ||
R: Rasmus Villemoes <[email protected]> | ||
R: Sergey Senozhatsky <[email protected]> | ||
S: Maintained | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git | ||
F: Documentation/core-api/printk-formats.rst | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,3 +103,5 @@ struct printk_message { | |
u64 seq; | ||
unsigned long dropped; | ||
}; | ||
|
||
bool other_cpu_in_panic(void); |
Oops, something went wrong.