Kernel KVM virtualization development
 help / color / mirror / Atom feed
From: Sean Christopherson <seanjc@google.com>
To: David Matlack <dmatlack@google.com>
Cc: sashiko-reviews@lists.linux.dev, Marc Zyngier <maz@kernel.org>,
	kvm@vger.kernel.org,  kvmarm@lists.linux.dev,
	Oliver Upton <oupton@kernel.org>
Subject: Re: [PATCH v7 09/20] KVM: selftests: Add VFIO device support to eventfd IRQ test
Date: Mon, 15 Jun 2026 12:22:05 -0700	[thread overview]
Message-ID: <ajBQ3YEAMyKnJWYb@google.com> (raw)
In-Reply-To: <CALzav=fQ5FENWgGNEqQrmb-i_9fWTRhLXj2-jZKC_zjM3Kg6PA@mail.gmail.com>

On Mon, Jun 15, 2026, David Matlack wrote:
> On Mon, Jun 15, 2026 at 11:05 AM Sean Christopherson <seanjc@google.com> wrote:
> >
> > On Mon, Jun 15, 2026, David Matlack wrote:
> > > On Fri, Jun 12, 2026 at 5:35 PM <sashiko-bot@kernel.org> wrote:
> > > > > diff --git a/tools/testing/selftests/kvm/irq_test.c b/tools/testing/selftests/kvm/irq_test.c
> > > > > index 9f8895b898214..6888be54ee4a9 100644
> > > > > --- a/tools/testing/selftests/kvm/irq_test.c
> > > > > +++ b/tools/testing/selftests/kvm/irq_test.c
> > > > [ ... ]
> > > > > @@ -55,6 +58,36 @@ static void *vcpu_thread_main(void *arg)
> > > > >       return NULL;
> > > > >  }
> > > > >
> > > > > +static int vfio_setup_msi(struct vfio_pci_device *device)
> > > > > +{
> > > > > +     const int flags = MAP_SHARED | MAP_ANONYMOUS;
> > > > > +     const int prot = PROT_READ | PROT_WRITE;
> > > > > +     struct dma_region *region;
> > > > > +
> > > > > +     /* A driver is required to generate an MSI. */
> > > > > +     TEST_REQUIRE(device->driver.ops);
> > > > > +
> > > > > +     /* Set up a DMA-able region for the driver to use. */
> > > > > +     region = &device->driver.region;
> > > > > +     region->iova = 0;
> > > >
> > > > [Severity: Medium]
> > > > Does hardcoding the DMA region's IOVA to 0 cause IOMMU mapping failures on
> > > > platforms that reserve or restrict IOVA 0?
> > > >
> > > > If IOVA 0 is unsupported, it seems like iommu_map() will fail and trigger a
> > > > test assertion crash instead of running.
> > >
> > > This is probably fine for now given the test is only for x86_64. But
> > > if you are going to send a v8 you can use the VFIO selftests
> > > iova_allocator to fix this, instead of hard-coding.
> >
> > I'm confused, why is this test setting up a DMA-able region in the first place?
> 
> There might be some devices with which you can trigger an MSI with
> pure MMIO. But most devices you need to at least set up some
> descriptors in memory that describe what action you want the device to
> take and then use MMIO to poke the device to read the desriptor and
> perform the action. Reading those descriptors is DMA.
> 
> For Intel DSA specifically, send_msi() works by telling the device to
> perform an 8-byte memcpy and send an interrupt when it's done. The
> driver region contains the descriptor for that memcpy, as well as the
> 8-byte source/destination buffers the device should use.

Ah, gotcha.  For a comment, how's this look?

diff --git a/tools/testing/selftests/kvm/irq_test.c b/tools/testing/selftests/kvm/irq_test.c
index 6888be54ee4a..9a495fdb52f5 100644
--- a/tools/testing/selftests/kvm/irq_test.c
+++ b/tools/testing/selftests/kvm/irq_test.c
@@ -67,7 +67,12 @@ static int vfio_setup_msi(struct vfio_pci_device *device)
        /* A driver is required to generate an MSI. */
        TEST_REQUIRE(device->driver.ops);
 
-       /* Set up a DMA-able region for the driver to use. */
+       /*
+        * Set up a DMA-able region for the driver to use.   Very few devices
+        * provide a way to arbitrarily send interrupts (MSIs), e.g. by writing
+        * an MMIO register.  Instead, most devices send MSIs when an action is
+        * completed, and practically all actions involve DMA of some form.
+        */
        region = &device->driver.region;
        region->iova = 0;
        region->size = SZ_2M;

  reply	other threads:[~2026-06-15 19:22 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-13  0:20 [PATCH v7 00/20] KVM: selftests: Add eventfd+VFIO IRQ test Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 01/20] KVM: selftests: Build and link selftests/vfio/lib into KVM selftests Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 02/20] KVM: selftests: Add macros to read/write+sync to/from guest memory Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 03/20] KVM: selftests: Rename guest_rng to kvm_rng Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 04/20] KVM: selftests: Initialize the default/global pRNG during kvm_selftest_init() Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 05/20] KVM: selftests: Seed libc's RNG before using it to generate a seed for KVM's pRNG Sean Christopherson
2026-06-13  0:30   ` sashiko-bot
2026-06-13  0:20 ` [PATCH v7 06/20] KVM: selftests: Add helper to generate random u64 in range [min,max] Sean Christopherson
2026-06-13  0:31   ` sashiko-bot
2026-06-13  0:20 ` [PATCH v7 07/20] KVM: selftests: Add an irqfd send+receive (and later IRQ bypass) test Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 08/20] KVM: selftests: Add helper to get host IRQ from device MSI-X for IRQ bypass test Sean Christopherson
2026-06-13  0:28   ` sashiko-bot
2026-06-13  0:20 ` [PATCH v7 09/20] KVM: selftests: Add VFIO device support to eventfd IRQ test Sean Christopherson
2026-06-13  0:35   ` sashiko-bot
2026-06-15 15:56     ` David Matlack
2026-06-15 18:05       ` Sean Christopherson
2026-06-15 18:32         ` David Matlack
2026-06-15 19:22           ` Sean Christopherson [this message]
2026-06-15 20:04             ` David Matlack
2026-06-13  0:20 ` [PATCH v7 10/20] KVM: selftests: Add a helper to set proc IRQ affinity for " Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 11/20] KVM: selftests: Verify interrupts are received when IRQ affinity changes in " Sean Christopherson
2026-06-13  0:29   ` sashiko-bot
2026-06-13  0:20 ` [PATCH v7 12/20] KVM: selftests: Add option to set empty routing between IRQs in eventfd " Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 13/20] KVM: selftests: Make number of IRQs configurable in " Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 14/20] KVM: selftests: Verify non-postable IRQ remapping " Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 15/20] KVM: selftests: Add kvm_gettid() wrapper and convert users Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 16/20] KVM: selftests: Add kvm_sched_getaffinity() " Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 17/20] KVM: selftests: Add a utility to pin a task to a random CPU, given a CPU set Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 18/20] KVM: selftests: Verify vCPU migration during IRQ delivery in IRQ test Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 19/20] KVM: selftests: Make number of vCPUs configurable " Sean Christopherson
2026-06-13  0:20 ` [PATCH v7 20/20] KVM: selftests: Add xAPIC support in eventfd " Sean Christopherson

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=ajBQ3YEAMyKnJWYb@google.com \
    --to=seanjc@google.com \
    --cc=dmatlack@google.com \
    --cc=kvm@vger.kernel.org \
    --cc=kvmarm@lists.linux.dev \
    --cc=maz@kernel.org \
    --cc=oupton@kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    /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