[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging] x86/MTRR: hook mtrr_bp_restore() back up
commit 0414dedd6fde1a1c5c5e38dcbef4dad506e1398c Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Thu Apr 3 09:39:13 2025 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Apr 3 09:39:13 2025 +0200 x86/MTRR: hook mtrr_bp_restore() back up Unlike stated in the offending commit's description, load_system_tables() wasn't the only thing left to retain from the earlier restore_rest_processor_state(). Note that MTRR state was still reloaded via mtrr_aps_sync_end(), but that happens quite a bit later in the resume process. While there also do Misra-related tidying for the function itself: The function being used from assembly only means it doesn't need to have a declaration, but wants to be asmlinkage. Fixes: 4304ff420e51 ("x86/S3: Drop {save,restore}_rest_processor_state() completely") Reported-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> --- xen/arch/x86/acpi/wakeup_prot.S | 2 ++ xen/arch/x86/cpu/mtrr/main.c | 2 +- xen/arch/x86/include/asm/mtrr.h | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/acpi/wakeup_prot.S b/xen/arch/x86/acpi/wakeup_prot.S index 8ce57ad137..a741d58b91 100644 --- a/xen/arch/x86/acpi/wakeup_prot.S +++ b/xen/arch/x86/acpi/wakeup_prot.S @@ -124,6 +124,8 @@ LABEL(s3_resume) mov STACK_CPUINFO_FIELD(cr4)(%rbx), %rax mov %rax, %cr4 + call mtrr_bp_restore + .Lsuspend_err: pop %r15 pop %r14 diff --git a/xen/arch/x86/cpu/mtrr/main.c b/xen/arch/x86/cpu/mtrr/main.c index 39b18c6013..24cddcaddf 100644 --- a/xen/arch/x86/cpu/mtrr/main.c +++ b/xen/arch/x86/cpu/mtrr/main.c @@ -610,7 +610,7 @@ void mtrr_aps_sync_end(void) hold_mtrr_updates_on_aps = 0; } -void mtrr_bp_restore(void) +void asmlinkage mtrr_bp_restore(void) { if (mtrr_if) mtrr_set_all(); diff --git a/xen/arch/x86/include/asm/mtrr.h b/xen/arch/x86/include/asm/mtrr.h index 36dac0a775..48b59d2620 100644 --- a/xen/arch/x86/include/asm/mtrr.h +++ b/xen/arch/x86/include/asm/mtrr.h @@ -66,7 +66,6 @@ extern uint8_t pat_type_2_pte_flags(uint8_t pat_type); extern int hold_mtrr_updates_on_aps; extern void mtrr_aps_sync_begin(void); extern void mtrr_aps_sync_end(void); -extern void mtrr_bp_restore(void); extern bool mtrr_var_range_msr_set(struct domain *d, struct mtrr_state *m, uint32_t msr, uint64_t msr_content); -- generated by git-patchbot for /home/xen/git/xen.git#staging
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |