KVM: Correct consistent typo: "destory" -> "destroy"
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
This commit is contained in:
Родитель
00fc9f5ae5
Коммит
d40ccc6246
|
@ -461,7 +461,7 @@ void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
|
|||
void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
|
||||
void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
|
||||
struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
|
||||
void kvm_arch_vcpu_destory(struct kvm_vcpu *vcpu);
|
||||
void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
|
||||
|
||||
int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu);
|
||||
void kvm_arch_hardware_enable(void *garbage);
|
||||
|
|
|
@ -824,7 +824,7 @@ unlink:
|
|||
kvm->vcpus[n] = NULL;
|
||||
mutex_unlock(&kvm->lock);
|
||||
vcpu_destroy:
|
||||
kvm_arch_vcpu_destory(vcpu);
|
||||
kvm_arch_vcpu_destroy(vcpu);
|
||||
return r;
|
||||
}
|
||||
|
||||
|
|
|
@ -2513,7 +2513,7 @@ fail:
|
|||
return ERR_PTR(r);
|
||||
}
|
||||
|
||||
void kvm_arch_vcpu_destory(struct kvm_vcpu *vcpu)
|
||||
void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
|
||||
{
|
||||
vcpu_load(vcpu);
|
||||
kvm_mmu_unload(vcpu);
|
||||
|
|
Загрузка…
Ссылка в новой задаче