Skip to content

Commit c9a4b55

Browse files
lenbhansendc
authored andcommitted
x86/cpu: Add Lunar Lake to list of CPUs with a broken MONITOR implementation
Under some conditions, MONITOR wakeups on Lunar Lake processors can be lost, resulting in significant user-visible delays. Add Lunar Lake to X86_BUG_MONITOR so that wake_up_idle_cpu() always sends an IPI, avoiding this potential delay. Reported originally here: https://bugzilla.kernel.org/show_bug.cgi?id=219364 [ dhansen: tweak subject ] Signed-off-by: Len Brown <len.brown@intel.com> Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com> Reviewed-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Cc:stable@vger.kernel.org Link: https://lore.kernel.org/all/a4aa8842a3c3bfdb7fe9807710eef159cbf0e705.1731463305.git.len.brown%40intel.com
1 parent ae6012d commit c9a4b55

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

arch/x86/kernel/cpu/intel.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,9 @@ static void init_intel(struct cpuinfo_x86 *c)
555555
c->x86_vfm == INTEL_WESTMERE_EX))
556556
set_cpu_bug(c, X86_BUG_CLFLUSH_MONITOR);
557557

558-
if (boot_cpu_has(X86_FEATURE_MWAIT) && c->x86_vfm == INTEL_ATOM_GOLDMONT)
558+
if (boot_cpu_has(X86_FEATURE_MWAIT) &&
559+
(c->x86_vfm == INTEL_ATOM_GOLDMONT ||
560+
c->x86_vfm == INTEL_LUNARLAKE_M))
559561
set_cpu_bug(c, X86_BUG_MONITOR);
560562

561563
#ifdef CONFIG_X86_64

0 commit comments

Comments
 (0)