[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging-4.19] x86/idle: undo use of MONITOR/MWAIT mnemonics
commit b026848daf3cca7a4e1d234c8a3b91ebed270e65 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Wed Jul 9 12:18:46 2025 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Wed Jul 9 12:18:46 2025 +0200 x86/idle: undo use of MONITOR/MWAIT mnemonics While the change is fine on staging, where the toolchain baseline was moved, we need to remain compatible with older gas on stable branches for now. Fixes: fa254938f00a ("x86/idle: Move monitor()/mwait() wrappers into cpu-idle.c") Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/acpi/cpu_idle.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xen/arch/x86/acpi/cpu_idle.c b/xen/arch/x86/acpi/cpu_idle.c index 1045d87eed..3c1d14292a 100644 --- a/xen/arch/x86/acpi/cpu_idle.c +++ b/xen/arch/x86/acpi/cpu_idle.c @@ -69,20 +69,20 @@ static always_inline void monitor( * The memory clobber is a compiler barrier. Subseqeunt reads from the * monitored cacheline must not be reordered over MONITOR. */ - asm volatile ( "monitor" + asm volatile ( ".byte 0x0f, 0x01, 0xc8" /* monitor */ :: "a" (addr), "c" (ecx), "d" (edx) : "memory" ); } static always_inline void mwait(unsigned int eax, unsigned int ecx) { - asm volatile ( "mwait" + asm volatile ( ".byte 0x0f, 0x01, 0xc9" /* mwait */ :: "a" (eax), "c" (ecx) ); } static always_inline void sti_mwait_cli(unsigned int eax, unsigned int ecx) { /* STI shadow covers MWAIT. */ - asm volatile ( "sti; mwait; cli" + asm volatile ( "sti; .byte 0x0f, 0x01, 0xc9;" /* mwait */ " cli" :: "a" (eax), "c" (ecx) ); } -- generated by git-patchbot for /home/xen/git/xen.git#staging-4.19
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |