There where a couple of unneeded packed attributes in several x86-specific
structures, that are obviously aligned. The only non-trivial one is
vmcb_struct, which has been checked to have the same layout with and without
the packed attribute using pahole. In that case add a build-time size check to
be on the safe side.
No functional change is expected as a result of this commit.
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
struct arch_svm_struct *arch_svm = &v->arch.hvm_svm;
struct vmcb_struct *vmcb = arch_svm->vmcb;
+ /* Build-time check of the size of VMCB AMD structure. */
+ BUILD_BUG_ON(sizeof(*vmcb) != PAGE_SIZE);
+
vmcb->_general1_intercepts =
GENERAL1_INTERCEPT_INTR | GENERAL1_INTERCEPT_NMI |
GENERAL1_INTERCEPT_SMI | GENERAL1_INTERCEPT_INIT |
* Attribute for segment selector. This is a copy of bit 40:47 & 52:55 of the
* segment descriptor. It happens to match the format of an AMD SVM VMCB.
*/
-typedef union __attribute__((__packed__)) segment_attributes {
+typedef union segment_attributes {
uint16_t bytes;
struct
{
* Full state of a segment register (visible and hidden portions).
* Again, this happens to match the format of an AMD SVM VMCB.
*/
-struct __attribute__((__packed__)) segment_register {
+struct segment_register {
uint16_t sel;
segment_attributes_t attr;
uint32_t limit;
/* Definition of segment state is borrowed by the generic HVM code. */
typedef struct segment_register svm_segment_register_t;
-typedef union __packed
+typedef union
{
u64 bytes;
struct
} fields;
} eventinj_t;
-typedef union __packed
+typedef union
{
u64 bytes;
struct
} fields;
} vintr_t;
-typedef union __packed
+typedef union
{
u64 bytes;
struct
} fields;
} ioio_info_t;
-typedef union __packed
+typedef union
{
u64 bytes;
struct
} fields;
} lbrctrl_t;
-typedef union __packed
+typedef union
{
uint32_t bytes;
struct
#define IOPM_SIZE (12 * 1024)
#define MSRPM_SIZE (8 * 1024)
-struct __packed vmcb_struct {
+struct vmcb_struct {
u32 _cr_intercepts; /* offset 0x00 - cleanbit 0 */
u32 _dr_intercepts; /* offset 0x04 - cleanbit 0 */
u32 _exception_intercepts; /* offset 0x08 - cleanbit 0 */