Make obvious that xcomp_bv is expected to be clear when we get here
with XSTATE_COMPACTION_ENABLED not set.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by Andrew Cooper <andrew.cooper3@citrix.com>
{ \
if ( unlikely(!(ptr->xsave_hdr.xcomp_bv & \
XSTATE_COMPACTION_ENABLED)) ) \
- ptr->xsave_hdr.xcomp_bv |= ptr->xsave_hdr.xstate_bv | \
- XSTATE_COMPACTION_ENABLED; \
+ { \
+ ASSERT(!ptr->xsave_hdr.xcomp_bv); \
+ ptr->xsave_hdr.xcomp_bv = ptr->xsave_hdr.xstate_bv | \
+ XSTATE_COMPACTION_ENABLED; \
+ } \
_xrstor(pfx "0x0f,0xc7,0x1f"); /* xrstors */ \
} \
else \