qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Jason Wang <jasowang@redhat.com>
Cc: qemu-devel@nongnu.org, peterx@redhat.com, wexu@redhat.com,
	Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] virtio: unbreak virtio-pci with IOMMU after caching ring translations
Date: Thu, 2 Mar 2017 07:10:16 +0200	[thread overview]
Message-ID: <20170302051016.GA3893@redhat.com> (raw)
In-Reply-To: <1488341440-4347-1-git-send-email-jasowang@redhat.com>

On Wed, Mar 01, 2017 at 12:10:40PM +0800, Jason Wang wrote:
> Commit c611c76417f5 ("virtio: add MemoryListener to cache ring
> translations") registers a memory listener to dma_as. This may not
> work when IOMMU is enabled: dma_as(bus_master_as) were initialized in
> pcibus_machine_done() after virtio_realize(). This will cause a
> segfault. Fixing this by using pci_device_iommu_address_space()
> instead to make sure address space were initialized at this time.
> 
> With this fix, IOMMU device were required to be initialized before any
> virtio-pci devices.
> 
> Fixes: c611c76417f5 ("virtio: add MemoryListener to cache ring translations")
> Cc: Paolo Bonzini <pbonzini@redhat.com>
> Signed-off-by: Jason Wang <jasowang@redhat.com>

This is very ugly. I guess it's better than broken IOMMU ...
Paolo?


> ---
>  hw/virtio/virtio-pci.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
> index 5ce42af..b76f3f6 100644
> --- a/hw/virtio/virtio-pci.c
> +++ b/hw/virtio/virtio-pci.c
> @@ -1153,7 +1153,7 @@ static AddressSpace *virtio_pci_get_dma_as(DeviceState *d)
>      VirtIOPCIProxy *proxy = VIRTIO_PCI(d);
>      PCIDevice *dev = &proxy->pci_dev;
>  
> -    return pci_get_address_space(dev);
> +    return pci_device_iommu_address_space(dev);
>  }
>  
>  static int virtio_pci_add_mem_cap(VirtIOPCIProxy *proxy,
> -- 
> 2.7.4

  reply	other threads:[~2017-03-02  5:10 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-01  4:10 [Qemu-devel] [PATCH] virtio: unbreak virtio-pci with IOMMU after caching ring translations Jason Wang
2017-03-02  5:10 ` Michael S. Tsirkin [this message]
2017-03-02  7:47   ` Jason Wang
2017-03-02 10:30     ` Paolo Bonzini
2017-03-03  9:11       ` Jason Wang

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=20170302051016.GA3893@redhat.com \
    --to=mst@redhat.com \
    --cc=jasowang@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=wexu@redhat.com \
    /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).