diff options
author | Avi Kivity <avi@redhat.com> | 2011-09-13 10:45:42 +0300 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-09-25 19:52:49 +0300 |
commit | b1ea50b2b63a95aa5a7944b48ba4d0e9b32211d3 (patch) | |
tree | bba618fcdb50535ee25e5f06e9a704b5734068e6 /arch/x86/include/asm/kvm_emulate.h | |
parent | a99455499a86bde28fccd84e2119be9cd7c23a3f (diff) | |
download | linux-b1ea50b2b63a95aa5a7944b48ba4d0e9b32211d3.tar.gz linux-b1ea50b2b63a95aa5a7944b48ba4d0e9b32211d3.tar.bz2 linux-b1ea50b2b63a95aa5a7944b48ba4d0e9b32211d3.zip |
KVM: x86 emulator: expand decode flags to 64 bits
Unifiying the operands means not taking advantage of the fact that some
operand types can only go into certain operands (for example, DI can only
be used by the destination), so we need more bits to hold the operand type.
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/include/asm/kvm_emulate.h')
-rw-r--r-- | arch/x86/include/asm/kvm_emulate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/kvm_emulate.h b/arch/x86/include/asm/kvm_emulate.h index 56bac3e3423e..a026507893e9 100644 --- a/arch/x86/include/asm/kvm_emulate.h +++ b/arch/x86/include/asm/kvm_emulate.h @@ -262,7 +262,7 @@ struct x86_emulate_ctxt { struct operand dst; bool has_seg_override; u8 seg_override; - unsigned int d; + u64 d; int (*execute)(struct x86_emulate_ctxt *ctxt); int (*check_perm)(struct x86_emulate_ctxt *ctxt); /* modrm */ |