Skip to content

Commit 81ce24b

Browse files
lenbujfalusi
authored andcommitted
[NOT FOR UPSTREAM] x86/cpu: Add INTEL_LUNARLAKE_M to X86_BUG_MONITOR
Under some conditions, MONITOR wakeups on Lunar Lake processors can be lost, resulting in significant user-visible delays. Add LunarLake to X86_BUG_MONITOR so that wake_up_idle_cpu() always sends an IPI, avoiding this potential delay. Closes: https://bugzilla.kernel.org/show_bug.cgi?id=219364 Cc: stable@vger.kernel.org # 6.11 Signed-off-by: Len Brown <len.brown@intel.com> Link: https://lore.kernel.org/lkml/a4aa8842a3c3bfdb7fe9807710eef159cbf0e705.1731463305.git.len.brown@intel.com/ Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
1 parent 11fd5aa commit 81ce24b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

arch/x86/kernel/cpu/intel.c

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

589-
if (boot_cpu_has(X86_FEATURE_MWAIT) && c->x86_vfm == INTEL_ATOM_GOLDMONT)
589+
if (boot_cpu_has(X86_FEATURE_MWAIT) &&
590+
(c->x86_vfm == INTEL_ATOM_GOLDMONT ||
591+
c->x86_vfm == INTEL_LUNARLAKE_M))
590592
set_cpu_bug(c, X86_BUG_MONITOR);
591593

592594
#ifdef CONFIG_X86_64

0 commit comments

Comments
 (0)