diff options
Diffstat (limited to 'kernel/panic.c')
| -rw-r--r-- | kernel/panic.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/kernel/panic.c b/kernel/panic.c index 24af9f8bac99..425567f45b9f 100644 --- a/kernel/panic.c +++ b/kernel/panic.c | |||
| @@ -153,6 +153,8 @@ EXPORT_SYMBOL(panic); | |||
| 153 | * 'M' - System experienced a machine check exception. | 153 | * 'M' - System experienced a machine check exception. |
| 154 | * 'B' - System has hit bad_page. | 154 | * 'B' - System has hit bad_page. |
| 155 | * 'U' - Userspace-defined naughtiness. | 155 | * 'U' - Userspace-defined naughtiness. |
| 156 | * 'A' - ACPI table overridden. | ||
| 157 | * 'W' - Taint on warning. | ||
| 156 | * | 158 | * |
| 157 | * The string is overwritten by the next call to print_taint(). | 159 | * The string is overwritten by the next call to print_taint(). |
| 158 | */ | 160 | */ |
| @@ -161,7 +163,7 @@ const char *print_tainted(void) | |||
| 161 | { | 163 | { |
| 162 | static char buf[20]; | 164 | static char buf[20]; |
| 163 | if (tainted) { | 165 | if (tainted) { |
| 164 | snprintf(buf, sizeof(buf), "Tainted: %c%c%c%c%c%c%c%c%c", | 166 | snprintf(buf, sizeof(buf), "Tainted: %c%c%c%c%c%c%c%c%c%c", |
| 165 | tainted & TAINT_PROPRIETARY_MODULE ? 'P' : 'G', | 167 | tainted & TAINT_PROPRIETARY_MODULE ? 'P' : 'G', |
| 166 | tainted & TAINT_FORCED_MODULE ? 'F' : ' ', | 168 | tainted & TAINT_FORCED_MODULE ? 'F' : ' ', |
| 167 | tainted & TAINT_UNSAFE_SMP ? 'S' : ' ', | 169 | tainted & TAINT_UNSAFE_SMP ? 'S' : ' ', |
| @@ -170,7 +172,8 @@ const char *print_tainted(void) | |||
| 170 | tainted & TAINT_BAD_PAGE ? 'B' : ' ', | 172 | tainted & TAINT_BAD_PAGE ? 'B' : ' ', |
| 171 | tainted & TAINT_USER ? 'U' : ' ', | 173 | tainted & TAINT_USER ? 'U' : ' ', |
| 172 | tainted & TAINT_DIE ? 'D' : ' ', | 174 | tainted & TAINT_DIE ? 'D' : ' ', |
| 173 | tainted & TAINT_OVERRIDDEN_ACPI_TABLE ? 'A' : ' '); | 175 | tainted & TAINT_OVERRIDDEN_ACPI_TABLE ? 'A' : ' ', |
| 176 | tainted & TAINT_WARN ? 'W' : ' '); | ||
| 174 | } | 177 | } |
| 175 | else | 178 | else |
| 176 | snprintf(buf, sizeof(buf), "Not tainted"); | 179 | snprintf(buf, sizeof(buf), "Not tainted"); |
| @@ -312,6 +315,7 @@ void warn_on_slowpath(const char *file, int line) | |||
| 312 | print_modules(); | 315 | print_modules(); |
| 313 | dump_stack(); | 316 | dump_stack(); |
| 314 | print_oops_end_marker(); | 317 | print_oops_end_marker(); |
| 318 | add_taint(TAINT_WARN); | ||
| 315 | } | 319 | } |
| 316 | EXPORT_SYMBOL(warn_on_slowpath); | 320 | EXPORT_SYMBOL(warn_on_slowpath); |
| 317 | #endif | 321 | #endif |
