aboutsummaryrefslogtreecommitdiffstats
path: root/tools/debugging
diff options
context:
space:
mode:
authorMathieu Chouquet-Stringer <me@mathieu.digital>2020-12-02 16:32:43 +0100
committerJonathan Corbet <corbet@lwn.net>2020-12-08 10:53:58 -0700
commit547f574fd9d5e3925d47fd44decbf6ab6df94b0e (patch)
treed133bf10db8dee8d34195e36f64b7fa734e87053 /tools/debugging
parentdocs: add a reset controller chapter to the driver API docs (diff)
downloadlinux-dev-547f574fd9d5e3925d47fd44decbf6ab6df94b0e.tar.xz
linux-dev-547f574fd9d5e3925d47fd44decbf6ab6df94b0e.zip
docs: Update documentation to reflect what TAINT_CPU_OUT_OF_SPEC means
Here's a patch updating the meaning of TAINT_CPU_OUT_OF_SPEC after Borislav introduced changes in a7e1f67ed29f and upcoming patches in tip. TAINT_CPU_OUT_OF_SPEC now means a bit more what it implies as the flag isn't set just because of a CPU misconfiguration or mismatch. Historically it was for SMP kernel oops on an officially SMP incapable processor but now it also covers CPUs whose MSRs have been incorrectly poked at from userspace, drivers being used on non supported architectures, broken firmware, mismatched CPUs, ... Update documentation and script to reflect that. Signed-off-by: Mathieu Chouquet-Stringer <me@mathieu.digital> Link: https://lore.kernel.org/r/20201202153244.709752-1-me@mathieu.digital Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'tools/debugging')
-rwxr-xr-xtools/debugging/kernel-chktaint2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/debugging/kernel-chktaint b/tools/debugging/kernel-chktaint
index 2240cb56e6e5..607b2b280945 100755
--- a/tools/debugging/kernel-chktaint
+++ b/tools/debugging/kernel-chktaint
@@ -72,7 +72,7 @@ if [ `expr $T % 2` -eq 0 ]; then
addout " "
else
addout "S"
- echo " * SMP kernel oops on an officially SMP incapable processor (#2)"
+ echo " * kernel running on an out of specification system (#2)"
fi
T=`expr $T / 2`