diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-09-11 20:02:02 +0300 |
---|---|---|
committer | Petr Mladek <pmladek@suse.com> | 2020-09-15 13:51:08 +0200 |
commit | 36d818f610f218e9e8711bf498b62a27778dae3f (patch) | |
tree | c8d63f2870e24f90f21a1cb32242388d0fa2c174 /include/linux/printk.h | |
parent | 730037c3ee57f892e6df019bc88d417a5944737c (diff) |
kernel.h: Move oops_in_progress to printk.h
The oops_in_progress is defined in printk.c, so it's logical
to move oops_in_progress to printk.h.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Signed-off-by: Petr Mladek <pmladek@suse.com>
Link: https://lore.kernel.org/r/20200911170202.8565-1-andriy.shevchenko@linux.intel.com
Diffstat (limited to 'include/linux/printk.h')
-rw-r--r-- | include/linux/printk.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/printk.h b/include/linux/printk.h index 34c1a7be3e01..f749a2c2e7a5 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h @@ -12,6 +12,8 @@ extern const char linux_banner[]; extern const char linux_proc_banner[]; +extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */ + #define PRINTK_MAX_SINGLE_HEADER_LEN 2 static inline int printk_get_level(const char *buffer) |