[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 1/2] x86emul: drop unused "bigval" fields from struct operand
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> --- a/xen/arch/x86/x86_emulate/x86_emulate.c +++ b/xen/arch/x86/x86_emulate/x86_emulate.c @@ -313,17 +313,11 @@ struct operand { enum { OP_REG, OP_MEM, OP_IMM, OP_NONE } type; unsigned int bytes; - /* Up to 128-byte operand value, addressable as ulong or uint32_t[]. */ - union { - unsigned long val; - uint32_t bigval[4]; - }; + /* Operand value. */ + unsigned long val; - /* Up to 128-byte operand value, addressable as ulong or uint32_t[]. */ - union { - unsigned long orig_val; - uint32_t orig_bigval[4]; - }; + /* Original operand value. */ + unsigned long orig_val; union { /* OP_REG: Pointer to register field. */ Attachment:
x86emul-drop-bigval.patch _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |