From: "Daniel P. Berrangé" <berrange@redhat.com>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Gao Shiyuan <gaoshiyuan@baidu.com>,
Marcel Apfelbaum <marcel.apfelbaum@gmail.com>,
zuoboqun@baidu.com, david@redhat.com, qemu-devel@nongnu.org,
Junjie Mao <junjie.mao@hotmail.com>,
wangliang44@baidu.com
Subject: Re: [PATCH v2 1/1] virtio-pci: fix memory_region_find for VirtIOPCIRegion's MR
Date: Wed, 30 Oct 2024 11:36:12 +0000 [thread overview]
Message-ID: <ZyIaLDygor_1Dert@redhat.com> (raw)
In-Reply-To: <20241029154315-mutt-send-email-mst@kernel.org>
On Tue, Oct 29, 2024 at 03:44:01PM -0400, Michael S. Tsirkin wrote:
> On Wed, Oct 09, 2024 at 05:58:27PM +0800, Gao Shiyuan wrote:
> > As shown below, if a virtio PCI device is attached under a pci-bridge, the MR
> > of VirtIOPCIRegion does not belong to any address space. So memory_region_find
> > cannot be used to search for this MR.
> >
> > Introduce the virtio-pci and pci_bridge address spaces to solve this problem.
> >
> > Before:
> > memory-region: pci_bridge_pci
> > 0000000000000000-ffffffffffffffff (prio 0, i/o): pci_bridge_pci
> > 00000000fe840000-00000000fe840fff (prio 1, i/o): virtio-net-pci-msix
> > 00000000fe840000-00000000fe84003f (prio 0, i/o): msix-table
> > 00000000fe840800-00000000fe840807 (prio 0, i/o): msix-pba
> > 0000380000000000-0000380000003fff (prio 1, i/o): virtio-pci
> > 0000380000000000-0000380000000fff (prio 0, i/o): virtio-pci-common-virtio-net
> > 0000380000001000-0000380000001fff (prio 0, i/o): virtio-pci-isr-virtio-net
> > 0000380000002000-0000380000002fff (prio 0, i/o): virtio-pci-device-virtio-net
> > 0000380000003000-0000380000003fff (prio 0, i/o): virtio-pci-notify-virtio-net
> >
> > After:
> > address-space: virtio-pci-cfg-mem-as
> > 0000380000000000-0000380000003fff (prio 1, i/o): virtio-pci
> > 0000380000000000-0000380000000fff (prio 0, i/o): virtio-pci-common-virtio-net
> > 0000380000001000-0000380000001fff (prio 0, i/o): virtio-pci-isr-virtio-net
> > 0000380000002000-0000380000002fff (prio 0, i/o): virtio-pci-device-virtio-net
> > 0000380000003000-0000380000003fff (prio 0, i/o): virtio-pci-notify-virtio-net
> >
> > address-space: pci_bridge_pci_mem
> > 0000000000000000-ffffffffffffffff (prio 0, i/o): pci_bridge_pci
> > 00000000fe840000-00000000fe840fff (prio 1, i/o): virtio-net-pci-msix
> > 00000000fe840000-00000000fe84003f (prio 0, i/o): msix-table
> > 00000000fe840800-00000000fe840807 (prio 0, i/o): msix-pba
> > 0000380000000000-0000380000003fff (prio 1, i/o): virtio-pci
> > 0000380000000000-0000380000000fff (prio 0, i/o): virtio-pci-common-virtio-net
> > 0000380000001000-0000380000001fff (prio 0, i/o): virtio-pci-isr-virtio-net
> > 0000380000002000-0000380000002fff (prio 0, i/o): virtio-pci-device-virtio-net
> > 0000380000003000-0000380000003fff (prio 0, i/o): virtio-pci-notify-virtio-net
> >
> > Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2576
> > Fixes: ffa8a3e3b2e6 ("virtio-pci: Add lookup subregion of VirtIOPCIRegion MR")
> >
>
> no empty lines between headers pls.
>
> > Signed-off-by: Gao Shiyuan <gaoshiyuan@baidu.com>
> > Signed-off-by: Zuo Boqun <zuoboqun@baidu.com>
> > Signed-off-by: Wang Liang <wangliang44@baidu.com>
>
>
> Daniel can you pls confirm it fixes the bug you reported with bsd?
yes, it works
Tested-by: Daniel P. Berrangé <berrange@redhat.com>
With regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
prev parent reply other threads:[~2024-10-30 11:37 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-09 9:58 [PATCH v2 1/1] virtio-pci: fix memory_region_find for VirtIOPCIRegion's MR Gao Shiyuan via
2024-10-11 8:18 ` David Hildenbrand
2024-10-11 10:00 ` Junjie Mao
2024-10-29 15:21 ` Gao,Shiyuan via
2024-10-29 17:07 ` Daniel P. Berrangé
2024-10-29 19:44 ` Michael S. Tsirkin
2024-10-30 11:36 ` Daniel P. Berrangé [this message]
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=ZyIaLDygor_1Dert@redhat.com \
--to=berrange@redhat.com \
--cc=david@redhat.com \
--cc=gaoshiyuan@baidu.com \
--cc=junjie.mao@hotmail.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=wangliang44@baidu.com \
--cc=zuoboqun@baidu.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).