1PRINT_TAINTED(9) Driver Basics PRINT_TAINTED(9)
2
3
4
6 print_tainted - return a string to represent the kernel taint state.
7
9 const char * print_tainted(void);
10
12 void
13 no arguments
14
16 ´P´ - Proprietary module has been loaded. ´F´ - Module has been
17 forcibly loaded. ´S´ - SMP with CPUs not designed for SMP. ´R´ - User
18 forced a module unload. ´M´ - System experienced a machine check
19 exception. ´B´ - System has hit bad_page. ´U´ - Userspace-defined
20 naughtiness. ´D´ - Kernel has oopsed before ´A´ - ACPI table
21 overridden. ´W´ - Taint on warning. ´C´ - modules from drivers/staging
22 are loaded. ´I´ - Working around severe firmware bug. ´H´ - Hardware is
23 unsupported.
24
25 The string is overwritten by the next call to print_tainted.
26
28Kernel Hackers Manual 2.6. June 2019 PRINT_TAINTED(9)