x86/HVM: move is_s3_suspended field
authorJan Beulich <jbeulich@suse.com>
Tue, 13 Apr 2021 08:18:34 +0000 (10:18 +0200)
committerJan Beulich <jbeulich@suse.com>
Tue, 13 Apr 2021 08:18:34 +0000 (10:18 +0200)
Put it next to another boolean, so they will "share" the subsequent
padding hole.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/include/asm-x86/hvm/domain.h

index 7b60e9125ffa83f91497ec26460d41e89260afc6..698455444ea85b691126c3e8a31c08bbd48acb25 100644 (file)
@@ -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.