[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] x86/HVM: move is_s3_suspended field
commit 3ccd796952deda179cb148606f7f7b3d6bea74b7 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Tue Apr 13 10:18:34 2021 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Tue Apr 13 10:18:34 2021 +0200 x86/HVM: move is_s3_suspended field Put it next to another boolean, so they will "share" the subsequent padding hole. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- xen/include/asm-x86/hvm/domain.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xen/include/asm-x86/hvm/domain.h b/xen/include/asm-x86/hvm/domain.h index 7b60e9125f..698455444e 100644 --- a/xen/include/asm-x86/hvm/domain.h +++ b/xen/include/asm-x86/hvm/domain.h @@ -113,15 +113,15 @@ struct hvm_domain { * mtrr/pat between vcpus is not the same, set is_in_uc_mode */ spinlock_t uc_lock; - bool_t is_in_uc_mode; + bool is_in_uc_mode; + + bool is_s3_suspended; /* hypervisor intercepted msix table */ struct list_head msixtbl_list; struct viridian_domain *viridian; - bool_t is_s3_suspended; - /* * TSC value that VCPUs use to calculate their tsc_offset value. * Used during initialization and save/restore. -- generated by git-patchbot for /home/xen/git/xen.git#master
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |