mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 20:53:53 +08:00
KVM: VMX: Avoid to return ENOTSUPP to userland
Choose some allowed error values for the cases VMX returned ENOTSUPP so far as these values could be returned by the KVM_RUN IOCTL. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
This commit is contained in:
parent
e601e3be7a
commit
7f582ab6d8
@ -3133,7 +3133,7 @@ static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
|
|||||||
printk(KERN_ERR
|
printk(KERN_ERR
|
||||||
"Fail to handle apic access vmexit! Offset is 0x%lx\n",
|
"Fail to handle apic access vmexit! Offset is 0x%lx\n",
|
||||||
offset);
|
offset);
|
||||||
return -ENOTSUPP;
|
return -ENOEXEC;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -3202,7 +3202,7 @@ static int handle_ept_violation(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
|
|||||||
|
|
||||||
if (exit_qualification & (1 << 6)) {
|
if (exit_qualification & (1 << 6)) {
|
||||||
printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
|
printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
|
||||||
return -ENOTSUPP;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
gla_validity = (exit_qualification >> 7) & 0x3;
|
gla_validity = (exit_qualification >> 7) & 0x3;
|
||||||
|
Loading…
Reference in New Issue
Block a user