* [Qemu-devel] [PATCH 0/2] virtio-mmio: fix 2 bugs
@ 2012-01-03 7:05 Ying-Shiuan Pan
2012-01-03 9:21 ` Stefan Hajnoczi
2012-01-03 10:30 ` Peter Maydell
0 siblings, 2 replies; 5+ messages in thread
From: Ying-Shiuan Pan @ 2012-01-03 7:05 UTC (permalink / raw)
To: qemu-devel
Hi, all
I'm not sure if it is appropriate to put patches here because
virtio-mmio is actually not in official repository yet.
In case that someone else wants to test virtio-mmio as I did, I decide
to send them out.
Currently, I've successfully tested virtio-blk, virtio-net, and virtio-balloon.
Ying-Shiuan Pan (2)
virtio: fix switch-case in virtio_mmio_write()
virtio: fix features negotiation
hw/virtio-mmio.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
----
Best Regards,
潘穎軒Ying-Shiuan Pan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] virtio-mmio: fix 2 bugs
2012-01-03 7:05 [Qemu-devel] [PATCH 0/2] virtio-mmio: fix 2 bugs Ying-Shiuan Pan
@ 2012-01-03 9:21 ` Stefan Hajnoczi
2012-01-03 10:30 ` Peter Maydell
1 sibling, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2012-01-03 9:21 UTC (permalink / raw)
To: Ying-Shiuan Pan; +Cc: Peter Maydell, qemu-devel, Pawel Moll
On Tue, Jan 3, 2012 at 7:05 AM, Ying-Shiuan Pan
<yingshiuan.pan@gmail.com> wrote:
> I'm not sure if it is appropriate to put patches here because
> virtio-mmio is actually not in official repository yet.
It's worth CCing Peter Maydell and Pawel on this because they are
working on virtio-mmio.
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] virtio-mmio: fix 2 bugs
2012-01-03 7:05 [Qemu-devel] [PATCH 0/2] virtio-mmio: fix 2 bugs Ying-Shiuan Pan
2012-01-03 9:21 ` Stefan Hajnoczi
@ 2012-01-03 10:30 ` Peter Maydell
2012-01-04 6:35 ` Ying-Shiuan Pan
2012-01-04 11:28 ` Stefan Hajnoczi
1 sibling, 2 replies; 5+ messages in thread
From: Peter Maydell @ 2012-01-03 10:30 UTC (permalink / raw)
To: Ying-Shiuan Pan; +Cc: qemu-devel
On 3 January 2012 07:05, Ying-Shiuan Pan <yingshiuan.pan@gmail.com> wrote:
> I'm not sure if it is appropriate to put patches here because
> virtio-mmio is actually not in official repository yet.
> In case that someone else wants to test virtio-mmio as I did, I decide
> to send them out.
>
> Currently, I've successfully tested virtio-blk, virtio-net, and virtio-balloon.
Thanks for tracking down these bugs and providing fixes. If it's OK with
you, I think I'll simply fold them in to my patches, since they haven't
been submitted upstream yet (the virtio subsystem needs splitting
out to have a cleaner backend/transport separation first).
-- PMM
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] virtio-mmio: fix 2 bugs
2012-01-03 10:30 ` Peter Maydell
@ 2012-01-04 6:35 ` Ying-Shiuan Pan
2012-01-04 11:28 ` Stefan Hajnoczi
1 sibling, 0 replies; 5+ messages in thread
From: Ying-Shiuan Pan @ 2012-01-04 6:35 UTC (permalink / raw)
To: Peter Maydell; +Cc: qemu-devel
2012/1/3 Peter Maydell <peter.maydell@linaro.org>:
> On 3 January 2012 07:05, Ying-Shiuan Pan <yingshiuan.pan@gmail.com> wrote:
>> I'm not sure if it is appropriate to put patches here because
>> virtio-mmio is actually not in official repository yet.
>> In case that someone else wants to test virtio-mmio as I did, I decide
>> to send them out.
>>
>> Currently, I've successfully tested virtio-blk, virtio-net, and virtio-balloon.
>
> Thanks for tracking down these bugs and providing fixes. If it's OK with
> you, I think I'll simply fold them in to my patches, since they haven't
> been submitted upstream yet (the virtio subsystem needs splitting
> out to have a cleaner backend/transport separation first).
>
> -- PMM
Yah~ it's ok, that's my pleasure!
Hope you can complete them soon~
----
Best Regards,
潘穎軒Ying-Shiuan Pan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] virtio-mmio: fix 2 bugs
2012-01-03 10:30 ` Peter Maydell
2012-01-04 6:35 ` Ying-Shiuan Pan
@ 2012-01-04 11:28 ` Stefan Hajnoczi
1 sibling, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2012-01-04 11:28 UTC (permalink / raw)
To: Peter Maydell; +Cc: Ying-Shiuan Pan, qemu-devel
On Tue, Jan 3, 2012 at 10:30 AM, Peter Maydell <peter.maydell@linaro.org> wrote:
> On 3 January 2012 07:05, Ying-Shiuan Pan <yingshiuan.pan@gmail.com> wrote:
>> I'm not sure if it is appropriate to put patches here because
>> virtio-mmio is actually not in official repository yet.
>> In case that someone else wants to test virtio-mmio as I did, I decide
>> to send them out.
>>
>> Currently, I've successfully tested virtio-blk, virtio-net, and virtio-balloon.
>
> Thanks for tracking down these bugs and providing fixes. If it's OK with
> you, I think I'll simply fold them in to my patches, since they haven't
> been submitted upstream yet (the virtio subsystem needs splitting
> out to have a cleaner backend/transport separation first).
The virtio transport separation in QEMU is something I mean to look
into. I've talked with Anthony in the past about the transport (e.g.
PCI) providing a virtio bus, which allows us to reuse qdev/QOM in a
more natural way. Today the hw/virtio* code is glued together in an
ad-hoc way. 9pfs has started to factor out the virtio-9p-pci device.
It's time to put a good solution in place for all virtio devices.
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-01-04 11:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-03 7:05 [Qemu-devel] [PATCH 0/2] virtio-mmio: fix 2 bugs Ying-Shiuan Pan
2012-01-03 9:21 ` Stefan Hajnoczi
2012-01-03 10:30 ` Peter Maydell
2012-01-04 6:35 ` Ying-Shiuan Pan
2012-01-04 11:28 ` Stefan Hajnoczi
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).