From: Auger Eric <eric.auger@redhat.com>
To: Peter Xu <peterx@redhat.com>, qemu-devel@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Alex Williamson <alex.williamson@redhat.com>,
Cornelia Huck <cohuck@redhat.com>
Subject: Re: [PATCH 2/5] vfio/pci: Use kvm_irqchip_add_irqfd_notifier_gsi() for irqfds
Date: Thu, 27 Feb 2020 12:04:11 +0100 [thread overview]
Message-ID: <bce7702f-c40b-c7d7-5184-44e893b7b806@redhat.com> (raw)
In-Reply-To: <20200226225048.216508-3-peterx@redhat.com>
Hi Peter,
On 2/26/20 11:50 PM, Peter Xu wrote:
> VFIO is currently the only one left that is not using the generic
> function (kvm_irqchip_add_irqfd_notifier_gsi()) to register irqfds.
> Let VFIO use the common framework too.
>
> Follow up patches will introduce extra features for kvm irqfd, so that
> VFIO can easily leverage that after the switch.
>
> Signed-off-by: Peter Xu <peterx@redhat.com>
Looks good to me
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Thanks
Eric
> ---
> hw/vfio/pci.c | 37 +++++++++++++++----------------------
> 1 file changed, 15 insertions(+), 22 deletions(-)
>
> diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
> index 98e0e0c994..09703362df 100644
> --- a/hw/vfio/pci.c
> +++ b/hw/vfio/pci.c
> @@ -115,11 +115,7 @@ static void vfio_intx_eoi(VFIODevice *vbasedev)
> static void vfio_intx_enable_kvm(VFIOPCIDevice *vdev, Error **errp)
> {
> #ifdef CONFIG_KVM
> - struct kvm_irqfd irqfd = {
> - .fd = event_notifier_get_fd(&vdev->intx.interrupt),
> - .gsi = vdev->intx.route.irq,
> - .flags = KVM_IRQFD_FLAG_RESAMPLE,
> - };
> + int irq_fd = event_notifier_get_fd(&vdev->intx.interrupt);
> Error *err = NULL;
>
> if (vdev->no_kvm_intx || !kvm_irqfds_enabled() ||
> @@ -141,7 +137,7 @@ static void vfio_intx_enable_kvm(VFIOPCIDevice *vdev, Error **errp)
> }
>
> /* Get to a known interrupt state */
> - qemu_set_fd_handler(irqfd.fd, NULL, NULL, vdev);
> + qemu_set_fd_handler(irq_fd, NULL, NULL, vdev);
> vfio_mask_single_irqindex(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX);
> vdev->intx.pending = false;
> pci_irq_deassert(&vdev->pdev);
> @@ -152,17 +148,18 @@ static void vfio_intx_enable_kvm(VFIOPCIDevice *vdev, Error **errp)
> goto fail;
> }
>
> - /* KVM triggers it, VFIO listens for it */
> - irqfd.resamplefd = event_notifier_get_fd(&vdev->intx.unmask);
> -
> - if (kvm_vm_ioctl(kvm_state, KVM_IRQFD, &irqfd)) {
> + if (kvm_irqchip_add_irqfd_notifier_gsi(kvm_state,
> + &vdev->intx.interrupt,
> + &vdev->intx.unmask,
> + vdev->intx.route.irq)) {
> error_setg_errno(errp, errno, "failed to setup resample irqfd");
> goto fail_irqfd;
> }
>
> if (vfio_set_irq_signaling(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX, 0,
> VFIO_IRQ_SET_ACTION_UNMASK,
> - irqfd.resamplefd, &err)) {
> + event_notifier_get_fd(&vdev->intx.unmask),
> + &err)) {
> error_propagate(errp, err);
> goto fail_vfio;
> }
> @@ -177,12 +174,12 @@ static void vfio_intx_enable_kvm(VFIOPCIDevice *vdev, Error **errp)
> return;
>
> fail_vfio:
> - irqfd.flags = KVM_IRQFD_FLAG_DEASSIGN;
> - kvm_vm_ioctl(kvm_state, KVM_IRQFD, &irqfd);
> + kvm_irqchip_remove_irqfd_notifier_gsi(kvm_state, &vdev->intx.interrupt,
> + vdev->intx.route.irq);
> fail_irqfd:
> event_notifier_cleanup(&vdev->intx.unmask);
> fail:
> - qemu_set_fd_handler(irqfd.fd, vfio_intx_interrupt, NULL, vdev);
> + qemu_set_fd_handler(irq_fd, vfio_intx_interrupt, NULL, vdev);
> vfio_unmask_single_irqindex(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX);
> #endif
> }
> @@ -190,12 +187,6 @@ fail:
> static void vfio_intx_disable_kvm(VFIOPCIDevice *vdev)
> {
> #ifdef CONFIG_KVM
> - struct kvm_irqfd irqfd = {
> - .fd = event_notifier_get_fd(&vdev->intx.interrupt),
> - .gsi = vdev->intx.route.irq,
> - .flags = KVM_IRQFD_FLAG_DEASSIGN,
> - };
> -
> if (!vdev->intx.kvm_accel) {
> return;
> }
> @@ -209,7 +200,8 @@ static void vfio_intx_disable_kvm(VFIOPCIDevice *vdev)
> pci_irq_deassert(&vdev->pdev);
>
> /* Tell KVM to stop listening for an INTx irqfd */
> - if (kvm_vm_ioctl(kvm_state, KVM_IRQFD, &irqfd)) {
> + if (kvm_irqchip_remove_irqfd_notifier_gsi(kvm_state, &vdev->intx.interrupt,
> + vdev->intx.route.irq)) {
> error_report("vfio: Error: Failed to disable INTx irqfd: %m");
> }
>
> @@ -217,7 +209,8 @@ static void vfio_intx_disable_kvm(VFIOPCIDevice *vdev)
> event_notifier_cleanup(&vdev->intx.unmask);
>
> /* QEMU starts listening for interrupt events. */
> - qemu_set_fd_handler(irqfd.fd, vfio_intx_interrupt, NULL, vdev);
> + qemu_set_fd_handler(event_notifier_get_fd(&vdev->intx.interrupt),
> + vfio_intx_interrupt, NULL, vdev);
>
> vdev->intx.kvm_accel = false;
>
>
next prev parent reply other threads:[~2020-02-27 11:05 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-26 22:50 [PATCH 0/5] vfio/pci: Fix up breakage against split irqchip and INTx Peter Xu
2020-02-26 22:50 ` [PATCH 1/5] vfio/pci: Disable INTx fast path if using split irqchip Peter Xu
2020-02-27 16:53 ` Auger Eric
2020-02-27 17:10 ` Peter Xu
2020-02-26 22:50 ` [PATCH 2/5] vfio/pci: Use kvm_irqchip_add_irqfd_notifier_gsi() for irqfds Peter Xu
2020-02-27 11:04 ` Auger Eric [this message]
2020-02-27 16:41 ` Cornelia Huck
2020-02-26 22:54 ` [PATCH 3/5] KVM: Pass EventNotifier into kvm_irqchip_assign_irqfd Peter Xu
2020-02-27 17:01 ` Auger Eric
2020-02-26 22:55 ` [PATCH 4/5] KVM: Kick resamplefd for split kernel irqchip Peter Xu
2020-02-27 17:00 ` [PATCH v1.1 " Peter Xu
2020-02-27 17:18 ` Peter Xu
2020-02-27 17:42 ` Auger Eric
2020-02-27 18:00 ` Peter Xu
2020-02-27 18:22 ` Auger Eric
2020-02-27 19:19 ` Peter Xu
2020-02-27 21:14 ` Auger Eric
2020-02-27 21:52 ` Peter Xu
2020-02-28 10:34 ` Paolo Bonzini
2020-02-28 10:36 ` Auger Eric
2020-02-28 10:34 ` [PATCH " Paolo Bonzini
2020-02-28 14:58 ` Peter Xu
2020-02-28 15:24 ` Paolo Bonzini
2020-02-26 22:55 ` [PATCH 5/5] Revert "vfio/pci: Disable INTx fast path if using split irqchip" Peter Xu
2020-02-27 15:32 ` [PATCH 0/5] vfio/pci: Fix up breakage against split irqchip and INTx Auger Eric
2020-02-27 15:51 ` Peter Xu
2020-02-27 17:02 ` Peter Xu
2020-02-28 10:36 ` Paolo Bonzini
2020-02-28 15:25 ` Peter Xu
2020-02-28 15:32 ` Paolo Bonzini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=bce7702f-c40b-c7d7-5184-44e893b7b806@redhat.com \
--to=eric.auger@redhat.com \
--cc=alex.williamson@redhat.com \
--cc=cohuck@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).