aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2011-04-20 15:56:20 +0300
committerAvi Kivity <avi@redhat.com>2011-05-22 08:39:24 -0400
commit13db70eca62c5bbb2cbbf6b23dadb94065d363d1 (patch)
tree61557cd6d5d5fe06210372360530409f724d235f /arch/x86
parent5197b808a7f459f9c7436573c7785ff3c1324c08 (diff)
downloadkernel_samsung_smdk4412-13db70eca62c5bbb2cbbf6b23dadb94065d363d1.zip
kernel_samsung_smdk4412-13db70eca62c5bbb2cbbf6b23dadb94065d363d1.tar.gz
kernel_samsung_smdk4412-13db70eca62c5bbb2cbbf6b23dadb94065d363d1.tar.bz2
KVM: x86 emulator: drop x86_emulate_ctxt::vcpu
No longer used. Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/include/asm/kvm_emulate.h2
-rw-r--r--arch/x86/kvm/x86.c1
2 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/include/asm/kvm_emulate.h b/arch/x86/include/asm/kvm_emulate.h
index 51341d6..127ea3e 100644
--- a/arch/x86/include/asm/kvm_emulate.h
+++ b/arch/x86/include/asm/kvm_emulate.h
@@ -269,8 +269,6 @@ struct x86_emulate_ctxt {
struct x86_emulate_ops *ops;
/* Register state before/after emulation. */
- struct kvm_vcpu *vcpu;
-
unsigned long eflags;
unsigned long eip; /* eip before instruction emulation */
/* Emulated execution mode, represented by an X86EMUL_MODE value. */
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 65a5b0c..a831d5d 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -4463,7 +4463,6 @@ static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
- vcpu->arch.emulate_ctxt.vcpu = vcpu;
vcpu->arch.emulate_ctxt.eflags = kvm_get_rflags(vcpu);
vcpu->arch.emulate_ctxt.eip = kvm_rip_read(vcpu);
vcpu->arch.emulate_ctxt.mode =