diff options
author | Max Bruning <max@joyent.com> | 2011-06-27 00:10:17 -0700 |
---|---|---|
committer | Max Bruning <max@joyent.com> | 2011-06-27 00:10:28 -0700 |
commit | 838b7f823415ca533748f4442198adfadae6f9a2 (patch) | |
tree | be6c1a3dc8ac11d3957631f33b3fb3cf5b10c9ff | |
parent | 2da0b1292c437a43942d8cb12df8cf21cca0a83f (diff) | |
download | illumos-kvm-838b7f823415ca533748f4442198adfadae6f9a2.tar.gz |
HVM-417 kmem_cache_destroy not called for all kmem caches on driver unload
-rw-r--r-- | kvm_vmx.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3205,7 +3205,8 @@ handle_external_interrupt(struct kvm_vcpu *vcpu) KVM_VCPU_KSTAT_INC(vcpu, kvmvs_irq_exits); if (CPU->cpu_runrun || CPU->cpu_kprunrun) { vcpu->run->exit_reason = KVM_EXIT_INTR; - vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EXTERNAL_INTERRUPT; + vcpu->run->hw.hardware_exit_reason = + EXIT_REASON_EXTERNAL_INTERRUPT; return (0); } else { return (1); |