diff options
author | Gleb Natapov <gleb@redhat.com> | 2011-04-12 12:36:21 +0300 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-05-22 08:39:49 -0400 |
commit | 8d7d810255982bfcc355cdb8972d72843acb0cf8 (patch) | |
tree | 9a486a1b741bff8e6d0620e63261b9f8086f7b1b /arch | |
parent | 46561646ce409ad96c22645362c113de04f60bfb (diff) | |
download | linux-3.10-8d7d810255982bfcc355cdb8972d72843acb0cf8.tar.gz linux-3.10-8d7d810255982bfcc355cdb8972d72843acb0cf8.tar.bz2 linux-3.10-8d7d810255982bfcc355cdb8972d72843acb0cf8.zip |
KVM: mmio_fault_cr2 is not used
Remove unused variable mmio_fault_cr2.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 1 | ||||
-rw-r--r-- | arch/x86/kvm/x86.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index 6cfc1ab2cdd..afb0e69bd16 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h @@ -358,7 +358,6 @@ struct kvm_vcpu_arch { struct fpu guest_fpu; u64 xcr0; - gva_t mmio_fault_cr2; struct kvm_pio_request pio; void *pio_data; diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index a831d5d8ca1..e3ac212f7c8 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c @@ -4561,7 +4561,7 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu, bool writeback = true; kvm_clear_exception_queue(vcpu); - vcpu->arch.mmio_fault_cr2 = cr2; + /* * TODO: fix emulate.c to use guest_read/write_register * instead of direct ->regs accesses, can save hundred cycles |