aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/panic.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/kernel/panic.c b/kernel/panic.c
index 028013f7afd4..f290e8e866f6 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -143,21 +143,6 @@ NORET_TYPE void panic(const char * fmt, ...)
143 143
144EXPORT_SYMBOL(panic); 144EXPORT_SYMBOL(panic);
145 145
146/**
147 * print_tainted - return a string to represent the kernel taint state.
148 *
149 * 'P' - Proprietary module has been loaded.
150 * 'F' - Module has been forcibly loaded.
151 * 'S' - SMP with CPUs not designed for SMP.
152 * 'R' - User forced a module unload.
153 * 'M' - System experienced a machine check exception.
154 * 'B' - System has hit bad_page.
155 * 'U' - Userspace-defined naughtiness.
156 * 'A' - ACPI table overridden.
157 * 'W' - Taint on warning.
158 *
159 * The string is overwritten by the next call to print_taint().
160 */
161 146
162struct tnt { 147struct tnt {
163 u8 bit; 148 u8 bit;
@@ -178,6 +163,21 @@ static const struct tnt tnts[] = {
178 { TAINT_WARN, 'W', ' ' }, 163 { TAINT_WARN, 'W', ' ' },
179}; 164};
180 165
166/**
167 * print_tainted - return a string to represent the kernel taint state.
168 *
169 * 'P' - Proprietary module has been loaded.
170 * 'F' - Module has been forcibly loaded.
171 * 'S' - SMP with CPUs not designed for SMP.
172 * 'R' - User forced a module unload.
173 * 'M' - System experienced a machine check exception.
174 * 'B' - System has hit bad_page.
175 * 'U' - Userspace-defined naughtiness.
176 * 'A' - ACPI table overridden.
177 * 'W' - Taint on warning.
178 *
179 * The string is overwritten by the next call to print_taint().
180 */
181const char *print_tainted(void) 181const char *print_tainted(void)
182{ 182{
183 static char buf[ARRAY_SIZE(tnts) + sizeof("Tainted: ") + 1]; 183 static char buf[ARRAY_SIZE(tnts) + sizeof("Tainted: ") + 1];