|
@@ -153,6 +153,8 @@ EXPORT_SYMBOL(panic);
|
|
* 'M' - System experienced a machine check exception.
|
|
* 'M' - System experienced a machine check exception.
|
|
* 'B' - System has hit bad_page.
|
|
* 'B' - System has hit bad_page.
|
|
* 'U' - Userspace-defined naughtiness.
|
|
* 'U' - Userspace-defined naughtiness.
|
|
|
|
+ * 'A' - ACPI table overridden.
|
|
|
|
+ * 'W' - Taint on warning.
|
|
*
|
|
*
|
|
* The string is overwritten by the next call to print_taint().
|
|
* The string is overwritten by the next call to print_taint().
|
|
*/
|
|
*/
|
|
@@ -161,7 +163,7 @@ const char *print_tainted(void)
|
|
{
|
|
{
|
|
static char buf[20];
|
|
static char buf[20];
|
|
if (tainted) {
|
|
if (tainted) {
|
|
- snprintf(buf, sizeof(buf), "Tainted: %c%c%c%c%c%c%c%c%c",
|
|
|
|
|
|
+ snprintf(buf, sizeof(buf), "Tainted: %c%c%c%c%c%c%c%c%c%c",
|
|
tainted & TAINT_PROPRIETARY_MODULE ? 'P' : 'G',
|
|
tainted & TAINT_PROPRIETARY_MODULE ? 'P' : 'G',
|
|
tainted & TAINT_FORCED_MODULE ? 'F' : ' ',
|
|
tainted & TAINT_FORCED_MODULE ? 'F' : ' ',
|
|
tainted & TAINT_UNSAFE_SMP ? 'S' : ' ',
|
|
tainted & TAINT_UNSAFE_SMP ? 'S' : ' ',
|
|
@@ -170,7 +172,8 @@ const char *print_tainted(void)
|
|
tainted & TAINT_BAD_PAGE ? 'B' : ' ',
|
|
tainted & TAINT_BAD_PAGE ? 'B' : ' ',
|
|
tainted & TAINT_USER ? 'U' : ' ',
|
|
tainted & TAINT_USER ? 'U' : ' ',
|
|
tainted & TAINT_DIE ? 'D' : ' ',
|
|
tainted & TAINT_DIE ? 'D' : ' ',
|
|
- tainted & TAINT_OVERRIDDEN_ACPI_TABLE ? 'A' : ' ');
|
|
|
|
|
|
+ tainted & TAINT_OVERRIDDEN_ACPI_TABLE ? 'A' : ' ',
|
|
|
|
+ tainted & TAINT_WARN ? 'W' : ' ');
|
|
}
|
|
}
|
|
else
|
|
else
|
|
snprintf(buf, sizeof(buf), "Not tainted");
|
|
snprintf(buf, sizeof(buf), "Not tainted");
|
|
@@ -312,6 +315,7 @@ void warn_on_slowpath(const char *file, int line)
|
|
print_modules();
|
|
print_modules();
|
|
dump_stack();
|
|
dump_stack();
|
|
print_oops_end_marker();
|
|
print_oops_end_marker();
|
|
|
|
+ add_taint(TAINT_WARN);
|
|
}
|
|
}
|
|
EXPORT_SYMBOL(warn_on_slowpath);
|
|
EXPORT_SYMBOL(warn_on_slowpath);
|
|
#endif
|
|
#endif
|