diff options
author | Avi Kivity <avi@qumranet.com> | 2007-03-01 14:20:40 (GMT) |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2007-05-03 07:52:23 (GMT) |
commit | 106b552b43beac2694df5fbafc8f125a72df5f65 (patch) | |
tree | 3d26f1f7148eaa4cb6e6d882418db283d9f2d29f /drivers/kvm | |
parent | 06465c5a3aa9948a7b00af49cd22ed8f235cdb0f (diff) | |
download | linux-fsl-qoriq-106b552b43beac2694df5fbafc8f125a72df5f65.tar.xz |
KVM: Remove the 'emulated' field from the userspace interface
We no longer emulate single instructions in userspace. Instead, we service
mmio or pio requests.
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm')
-rw-r--r-- | drivers/kvm/kvm_main.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/kvm/kvm_main.c b/drivers/kvm/kvm_main.c index caec54f..5d24203 100644 --- a/drivers/kvm/kvm_main.c +++ b/drivers/kvm/kvm_main.c @@ -1588,11 +1588,6 @@ static int kvm_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) /* re-sync apic's tpr */ vcpu->cr8 = kvm_run->cr8; - if (kvm_run->emulated) { - kvm_arch_ops->skip_emulated_instruction(vcpu); - kvm_run->emulated = 0; - } - if (kvm_run->io_completed) { if (vcpu->pio_pending) complete_pio(vcpu); |