]> git.baikalelectronics.ru Git - kernel.git/commit
KVM/VMX: Avoid return error when flush tlb successfully in the hv_remote_flush_tlb_wi...
authorLan Tianyu <Tianyu.Lan@microsoft.com>
Fri, 4 Jan 2019 07:20:44 +0000 (15:20 +0800)
committerRadim Krčmář <rkrcmar@redhat.com>
Fri, 11 Jan 2019 17:38:07 +0000 (18:38 +0100)
commit6ba8fd22f92ae3082e21d76a71baebf1fac9f7dc
tree74031c2b9bde92b36b3ed6922c0226ece43837b8
parent7ee0dd8aa821c56d4df8af6d4e735c858ff11f25
KVM/VMX: Avoid return error when flush tlb successfully in the hv_remote_flush_tlb_with_range()

The "ret" is initialized to be ENOTSUPP. The return value of
__hv_remote_flush_tlb_with_range() will be Or with "ret" when ept
table potiners are mismatched. This will cause return ENOTSUPP even if
flush tlb successfully. This patch is to fix the issue and set
"ret" to 0.

Fixes: 957908176f8f ("KVM/VMX: Change hv flush logic when ept tables are mismatched.")
Signed-off-by: Lan Tianyu <Tianyu.Lan@microsoft.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
arch/x86/kvm/vmx/vmx.c