]> Git Repo - linux.git/commitdiff
arm64: cpufeature: Don't dump useless backtrace on CPU_OUT_OF_SPEC
authorWill Deacon <[email protected]>
Thu, 18 May 2017 15:10:34 +0000 (16:10 +0100)
committerWill Deacon <[email protected]>
Tue, 30 May 2017 10:07:42 +0000 (11:07 +0100)
Unfortunately, it turns out that mismatched CPU features in big.LITTLE
systems are starting to appear in the wild. Whilst we should continue to
taint the kernel with CPU_OUT_OF_SPEC for features that differ in ways
that we can't fix up, dumping a useless backtrace out of the cpufeature
code is pointless and irritating.

This patch removes the backtrace from the taint.

Signed-off-by: Mark Rutland <[email protected]>
Signed-off-by: Will Deacon <[email protected]>
arch/arm64/kernel/cpufeature.c

index 817ce3365e200dfb5f7ff205dadabe72c3490e43..22f554320581a18490ed2ea3594d607d6f7df948 100644 (file)
@@ -639,8 +639,8 @@ void update_cpu_features(int cpu,
         * Mismatched CPU features are a recipe for disaster. Don't even
         * pretend to support them.
         */
-       WARN_TAINT_ONCE(taint, TAINT_CPU_OUT_OF_SPEC,
-                       "Unsupported CPU feature variation.\n");
+       pr_warn_once("Unsupported CPU feature variation detected.\n");
+       add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_STILL_OK);
 }
 
 u64 read_sanitised_ftr_reg(u32 id)
This page took 0.060672 seconds and 4 git commands to generate.