]> www.infradead.org Git - users/dwmw2/linux.git/commit
KVM: x86/xen: Make kvm_xen_set_evtchn() reusable from other places
authorDavid Woodhouse <dwmw@amazon.co.uk>
Thu, 3 Mar 2022 15:41:17 +0000 (15:41 +0000)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 9 Mar 2022 16:48:18 +0000 (11:48 -0500)
commitfe97cd9f0a435467449d7cb7aba630ee7333f011
tree958a6e4367da37428fe8e6ba6fc03ec509df62d5
parentee257643dffd8e70ede9ed5b151b467e0c02b977
KVM: x86/xen: Make kvm_xen_set_evtchn() reusable from other places

Clean it up to return -errno on error consistently, while still being
compatible with the return conventions for kvm_arch_set_irq_inatomic()
and the kvm_set_irq() callback.

We use -ENOTCONN to indicate when the port is masked. No existing users
care, except that it's negative.

Also allow it to optimise the vCPU lookup. Unless we abuse the lapic
map, there is no quick lookup from APIC ID to a vCPU; the logic in
kvm_get_vcpu_by_id() will just iterate over all vCPUs till it finds
the one it wants. So do that just once and stash the result in the
struct kvm_xen_evtchn for next time.

Signed-off-by: David Woodhouse <dwmw@amazon.co.uk>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20220303154127.202856-8-dwmw2@infradead.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/irq_comm.c
arch/x86/kvm/xen.c
arch/x86/kvm/xen.h
include/linux/kvm_host.h