Skip to content

Commit 8406848

Browse files
lenbgregkh
authored andcommitted
x86/cpu: Add Lunar Lake to list of CPUs with a broken MONITOR implementation
[ Upstream commit c9a4b55 ] 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 <[email protected]> Signed-off-by: Dave Hansen <[email protected]> Reviewed-by: Rafael J. Wysocki <[email protected]> Cc:[email protected] Link: https://lore.kernel.org/all/a4aa8842a3c3bfdb7fe9807710eef159cbf0e705.1731463305.git.len.brown%40intel.com Signed-off-by: Sasha Levin <[email protected]>
1 parent fe48d03 commit 8406848

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
@@ -666,7 +666,9 @@ static void init_intel(struct cpuinfo_x86 *c)
666666
c->x86_vfm == INTEL_WESTMERE_EX))
667667
set_cpu_bug(c, X86_BUG_CLFLUSH_MONITOR);
668668

669-
if (boot_cpu_has(X86_FEATURE_MWAIT) && c->x86_vfm == INTEL_ATOM_GOLDMONT)
669+
if (boot_cpu_has(X86_FEATURE_MWAIT) &&
670+
(c->x86_vfm == INTEL_ATOM_GOLDMONT ||
671+
c->x86_vfm == INTEL_LUNARLAKE_M))
670672
set_cpu_bug(c, X86_BUG_MONITOR);
671673

672674
#ifdef CONFIG_X86_64

0 commit comments

Comments
 (0)