* Re: [Qemu-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-02-15 13:16 ` Wei Liu
@ 2016-02-15 13:23 ` Paul Durrant
2016-02-15 13:23 ` Paul Durrant
` (2 subsequent siblings)
3 siblings, 0 replies; 21+ messages in thread
From: Paul Durrant @ 2016-02-15 13:23 UTC (permalink / raw)
Cc: Wei Liu, qemu-devel@nongnu.org, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
> -----Original Message-----
> From: Wei Liu [mailto:wei.liu2@citrix.com]
> Sent: 15 February 2016 13:16
> To: Paul Durrant
> Cc: Wei Liu; qemu-devel@nongnu.org; Xen-devel; Anthony Perard;
> gkurz@linux.vnet.ibm.com; aneesh.kumar@linux.vnet.ibm.com; Stefano
> Stabellini
> Subject: Re: [Qemu-devel] RFC: configuring QEMU virtfs for Xen PV(H)
> guests
>
> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
> > >
> [...]
> > > # Option 2: Invent a xen-9p device
> > >
> > > Another way of doing it is to expose a dummy xen-9p device, so that we
> > > can use -fsdev XXX -device xen-9p,YYY. This simple device should be
> > > used to capture the parameters like mount_tag and fsdev_id, and then
> > > chained itself to a known location. Later Xen transport can traverse
> > > this known location. This xen-9p device doesn't seem to fit well into
> > > the hierarchy. The best I can think of its parent should be
> > > TYPE_DEVICE. In this case:
> > >
> > > 1. Toolstack arranges some xenstore entries.
> > > 2. Toolstack arranges command line options for QEMU:
> > > -fsdev XXX -device xen-9p,XXX
> > > 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
> > > entries, then traverses the known location.
> > >
> > > Downside: Inventing a dummy device looks suboptimal to me.
> > >
> >
>
> I wasn't talking about inventing a whole new hierarchy for XENBUS
> devices. I didn't talk about that because that's not strictly related to
> 9p project and maybe a project in its own right. But I'm glad you
> notice this possibility.
>
> > This sounds like a reasonable approach to me and surely it can be made
> > generic (i.e. not tied to virtfs specifically). All we need as a new
> > device type 'xenbus-device' or somesuch and a parameter to that device
> > which specifies the exact xenstore entry for that device and all other
> > configuration information is specified there e.g whether it's a vif,
> > vbd, 9p or whatever. The correct backend can then be kicked off
> > directly. No scanning required. No stealing required. As for the
> > device type, would it not be best to have a proper XENBUS bus type?
>
> Yes, that would be good. It's just not implemented yet.
>
> > All the code which actually talks to xenstore could be collected there
> > and then you could have all XENBUS_DEVICEs using that common code via
> > the class hierarchy?
> >
>
> I can have a look into this. We can probably start with 9p and gradually
> graft all other devices to XENBUS device hierarchy. I don't think all
> other PV devices are in dire need for this hierarchy at the moment.
>
That may be true, but with the infrastructure in place in a common class (for things like manipulation of the xenbus state machine), I suspect the other backends could be easily be ported over with a substantial reduction in complexity and quantity of code.
Paul
> Wei.
>
> > Paul
^ permalink raw reply [flat|nested] 21+ messages in thread* Re: [Qemu-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-02-15 13:16 ` Wei Liu
2016-02-15 13:23 ` Paul Durrant
@ 2016-02-15 13:23 ` Paul Durrant
2016-02-15 13:33 ` [Qemu-devel] [Xen-devel] " Juergen Gross
2016-02-15 13:33 ` Juergen Gross
3 siblings, 0 replies; 21+ messages in thread
From: Paul Durrant @ 2016-02-15 13:23 UTC (permalink / raw)
To: Wei Liu
Cc: qemu-devel@nongnu.org, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
> -----Original Message-----
> From: Wei Liu [mailto:wei.liu2@citrix.com]
> Sent: 15 February 2016 13:16
> To: Paul Durrant
> Cc: Wei Liu; qemu-devel@nongnu.org; Xen-devel; Anthony Perard;
> gkurz@linux.vnet.ibm.com; aneesh.kumar@linux.vnet.ibm.com; Stefano
> Stabellini
> Subject: Re: [Qemu-devel] RFC: configuring QEMU virtfs for Xen PV(H)
> guests
>
> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
> > >
> [...]
> > > # Option 2: Invent a xen-9p device
> > >
> > > Another way of doing it is to expose a dummy xen-9p device, so that we
> > > can use -fsdev XXX -device xen-9p,YYY. This simple device should be
> > > used to capture the parameters like mount_tag and fsdev_id, and then
> > > chained itself to a known location. Later Xen transport can traverse
> > > this known location. This xen-9p device doesn't seem to fit well into
> > > the hierarchy. The best I can think of its parent should be
> > > TYPE_DEVICE. In this case:
> > >
> > > 1. Toolstack arranges some xenstore entries.
> > > 2. Toolstack arranges command line options for QEMU:
> > > -fsdev XXX -device xen-9p,XXX
> > > 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
> > > entries, then traverses the known location.
> > >
> > > Downside: Inventing a dummy device looks suboptimal to me.
> > >
> >
>
> I wasn't talking about inventing a whole new hierarchy for XENBUS
> devices. I didn't talk about that because that's not strictly related to
> 9p project and maybe a project in its own right. But I'm glad you
> notice this possibility.
>
> > This sounds like a reasonable approach to me and surely it can be made
> > generic (i.e. not tied to virtfs specifically). All we need as a new
> > device type 'xenbus-device' or somesuch and a parameter to that device
> > which specifies the exact xenstore entry for that device and all other
> > configuration information is specified there e.g whether it's a vif,
> > vbd, 9p or whatever. The correct backend can then be kicked off
> > directly. No scanning required. No stealing required. As for the
> > device type, would it not be best to have a proper XENBUS bus type?
>
> Yes, that would be good. It's just not implemented yet.
>
> > All the code which actually talks to xenstore could be collected there
> > and then you could have all XENBUS_DEVICEs using that common code via
> > the class hierarchy?
> >
>
> I can have a look into this. We can probably start with 9p and gradually
> graft all other devices to XENBUS device hierarchy. I don't think all
> other PV devices are in dire need for this hierarchy at the moment.
>
That may be true, but with the infrastructure in place in a common class (for things like manipulation of the xenbus state machine), I suspect the other backends could be easily be ported over with a substantial reduction in complexity and quantity of code.
Paul
> Wei.
>
> > Paul
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] [Xen-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-02-15 13:16 ` Wei Liu
2016-02-15 13:23 ` Paul Durrant
2016-02-15 13:23 ` Paul Durrant
@ 2016-02-15 13:33 ` Juergen Gross
2016-02-15 13:44 ` [Qemu-devel] " Wei Liu
2016-02-15 13:44 ` [Qemu-devel] [Xen-devel] " Wei Liu
2016-02-15 13:33 ` Juergen Gross
3 siblings, 2 replies; 21+ messages in thread
From: Juergen Gross @ 2016-02-15 13:33 UTC (permalink / raw)
To: Wei Liu, Paul Durrant
Cc: qemu-devel@nongnu.org, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
[-- Attachment #1: Type: text/plain, Size: 1341 bytes --]
On 15/02/16 14:16, Wei Liu wrote:
> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
>>>
> [...]
>>> # Option 2: Invent a xen-9p device
>>>
>>> Another way of doing it is to expose a dummy xen-9p device, so that we
>>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
>>> used to capture the parameters like mount_tag and fsdev_id, and then
>>> chained itself to a known location. Later Xen transport can traverse
>>> this known location. This xen-9p device doesn't seem to fit well into
>>> the hierarchy. The best I can think of its parent should be
>>> TYPE_DEVICE. In this case:
>>>
>>> 1. Toolstack arranges some xenstore entries.
>>> 2. Toolstack arranges command line options for QEMU:
>>> -fsdev XXX -device xen-9p,XXX
>>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
>>> entries, then traverses the known location.
>>>
>>> Downside: Inventing a dummy device looks suboptimal to me.
Sorry, didn't notice this thread before.
For Xen pvUSB backend in qemu I need a Xen system device acting as
parent for being able to attach/detach virtual USB busses.
I haven't had time to update my patches for some time, but the patch
for this system device is rather easy. It could be used as a parent
of the xen-9p devices, too.
I've attached the patch for reference.
Juergen
[-- Attachment #2: 0001-xen-introduce-dummy-system-device.patch --]
[-- Type: text/x-patch, Size: 3131 bytes --]
>From 1bc23acf54e60c666b1ec8e3f59c7e5550423e6f Mon Sep 17 00:00:00 2001
From: Juergen Gross <jgross@suse.com>
Date: Thu, 3 Sep 2015 11:54:50 +0200
Subject: [Patch V1 1/3] xen: introduce dummy system device
Introduce a new dummy system device serving as parent for virtual
buses. This will enable new pv backends to introduce virtual buses
which are removable again opposed to system buses which are meant
to stay once added.
Signed-off-by: Juergen Gross <jgross@suse.com>
---
hw/xenpv/xen_machine_pv.c | 39 +++++++++++++++++++++++++++++++++++++++
include/hw/xen/xen_backend.h | 1 +
2 files changed, 40 insertions(+)
diff --git a/hw/xenpv/xen_machine_pv.c b/hw/xenpv/xen_machine_pv.c
index 2e545d2..57bc071 100644
--- a/hw/xenpv/xen_machine_pv.c
+++ b/hw/xenpv/xen_machine_pv.c
@@ -24,10 +24,15 @@
#include "hw/hw.h"
#include "hw/boards.h"
+#include "hw/sysbus.h"
#include "hw/xen/xen_backend.h"
#include "xen_domainbuild.h"
#include "sysemu/block-backend.h"
+#define TYPE_XENSYSDEV "xensysdev"
+
+DeviceState *xen_sysdev;
+
static void xen_init_pv(MachineState *machine)
{
const char *kernel_filename = machine->kernel_filename;
@@ -59,6 +64,9 @@ static void xen_init_pv(MachineState *machine)
break;
}
+ xen_sysdev = qdev_create(NULL, TYPE_XENSYSDEV);
+ qdev_init_nofail(xen_sysdev);
+
xen_be_register("console", &xen_console_ops);
xen_be_register("vkbd", &xen_kbdmouse_ops);
xen_be_register("vfb", &xen_framebuffer_ops);
@@ -93,6 +101,31 @@ static void xen_init_pv(MachineState *machine)
xen_init_display(xen_domid);
}
+static int xen_sysdev_init(SysBusDevice *dev)
+{
+ return 0;
+}
+
+static Property xen_sysdev_properties[] = {
+ {/* end of property list */},
+};
+
+static void xen_sysdev_class_init(ObjectClass *klass, void *data)
+{
+ DeviceClass *dc = DEVICE_CLASS(klass);
+ SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
+
+ k->init = xen_sysdev_init;
+ dc->props = xen_sysdev_properties;
+}
+
+static const TypeInfo xensysdev_info = {
+ .name = TYPE_XENSYSDEV,
+ .parent = TYPE_SYS_BUS_DEVICE,
+ .instance_size = sizeof(SysBusDevice),
+ .class_init = xen_sysdev_class_init,
+};
+
static QEMUMachine xenpv_machine = {
.name = "xenpv",
.desc = "Xen Para-virtualized PC",
@@ -101,9 +134,15 @@ static QEMUMachine xenpv_machine = {
.default_machine_opts = "accel=xen",
};
+static void xenpv_register_types(void)
+{
+ type_register_static(&xensysdev_info);
+}
+
static void xenpv_machine_init(void)
{
qemu_register_machine(&xenpv_machine);
}
+type_init(xenpv_register_types)
machine_init(xenpv_machine_init);
diff --git a/include/hw/xen/xen_backend.h b/include/hw/xen/xen_backend.h
index 3b4125e..911ba6d 100644
--- a/include/hw/xen/xen_backend.h
+++ b/include/hw/xen/xen_backend.h
@@ -59,6 +59,7 @@ struct XenDevice {
extern XenXC xen_xc;
extern struct xs_handle *xenstore;
extern const char *xen_protocol;
+extern DeviceState *xen_sysdev;
/* xenstore helper functions */
int xenstore_write_str(const char *base, const char *node, const char *val);
--
2.1.4
^ permalink raw reply related [flat|nested] 21+ messages in thread* Re: [Qemu-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-02-15 13:33 ` [Qemu-devel] [Xen-devel] " Juergen Gross
@ 2016-02-15 13:44 ` Wei Liu
2016-02-15 13:44 ` [Qemu-devel] [Xen-devel] " Wei Liu
1 sibling, 0 replies; 21+ messages in thread
From: Wei Liu @ 2016-02-15 13:44 UTC (permalink / raw)
To: Juergen Gross
Cc: Wei Liu, qemu-devel@nongnu.org, Paul Durrant, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
On Mon, Feb 15, 2016 at 02:33:05PM +0100, Juergen Gross wrote:
> On 15/02/16 14:16, Wei Liu wrote:
> > On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
> >>>
> > [...]
> >>> # Option 2: Invent a xen-9p device
> >>>
> >>> Another way of doing it is to expose a dummy xen-9p device, so that we
> >>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
> >>> used to capture the parameters like mount_tag and fsdev_id, and then
> >>> chained itself to a known location. Later Xen transport can traverse
> >>> this known location. This xen-9p device doesn't seem to fit well into
> >>> the hierarchy. The best I can think of its parent should be
> >>> TYPE_DEVICE. In this case:
> >>>
> >>> 1. Toolstack arranges some xenstore entries.
> >>> 2. Toolstack arranges command line options for QEMU:
> >>> -fsdev XXX -device xen-9p,XXX
> >>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
> >>> entries, then traverses the known location.
> >>>
> >>> Downside: Inventing a dummy device looks suboptimal to me.
>
> Sorry, didn't notice this thread before.
>
No need to be sorry. I posted this last Friday night. I wouldn't expect
many replies on Monady.
> For Xen pvUSB backend in qemu I need a Xen system device acting as
> parent for being able to attach/detach virtual USB busses.
>
> I haven't had time to update my patches for some time, but the patch
> for this system device is rather easy. It could be used as a parent
> of the xen-9p devices, too.
>
> I've attached the patch for reference.
>
Thanks. I will have a look at your patch.
Wei.
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] [Xen-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-02-15 13:33 ` [Qemu-devel] [Xen-devel] " Juergen Gross
2016-02-15 13:44 ` [Qemu-devel] " Wei Liu
@ 2016-02-15 13:44 ` Wei Liu
2016-03-07 7:21 ` [Qemu-devel] " Juergen Gross
2016-03-07 7:21 ` [Qemu-devel] [Xen-devel] " Juergen Gross
1 sibling, 2 replies; 21+ messages in thread
From: Wei Liu @ 2016-02-15 13:44 UTC (permalink / raw)
To: Juergen Gross
Cc: Wei Liu, qemu-devel@nongnu.org, Paul Durrant, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
On Mon, Feb 15, 2016 at 02:33:05PM +0100, Juergen Gross wrote:
> On 15/02/16 14:16, Wei Liu wrote:
> > On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
> >>>
> > [...]
> >>> # Option 2: Invent a xen-9p device
> >>>
> >>> Another way of doing it is to expose a dummy xen-9p device, so that we
> >>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
> >>> used to capture the parameters like mount_tag and fsdev_id, and then
> >>> chained itself to a known location. Later Xen transport can traverse
> >>> this known location. This xen-9p device doesn't seem to fit well into
> >>> the hierarchy. The best I can think of its parent should be
> >>> TYPE_DEVICE. In this case:
> >>>
> >>> 1. Toolstack arranges some xenstore entries.
> >>> 2. Toolstack arranges command line options for QEMU:
> >>> -fsdev XXX -device xen-9p,XXX
> >>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
> >>> entries, then traverses the known location.
> >>>
> >>> Downside: Inventing a dummy device looks suboptimal to me.
>
> Sorry, didn't notice this thread before.
>
No need to be sorry. I posted this last Friday night. I wouldn't expect
many replies on Monady.
> For Xen pvUSB backend in qemu I need a Xen system device acting as
> parent for being able to attach/detach virtual USB busses.
>
> I haven't had time to update my patches for some time, but the patch
> for this system device is rather easy. It could be used as a parent
> of the xen-9p devices, too.
>
> I've attached the patch for reference.
>
Thanks. I will have a look at your patch.
Wei.
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-02-15 13:44 ` [Qemu-devel] [Xen-devel] " Wei Liu
@ 2016-03-07 7:21 ` Juergen Gross
2016-03-07 7:21 ` [Qemu-devel] [Xen-devel] " Juergen Gross
1 sibling, 0 replies; 21+ messages in thread
From: Juergen Gross @ 2016-03-07 7:21 UTC (permalink / raw)
To: Wei Liu
Cc: qemu-devel@nongnu.org, Paul Durrant, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
Hi Wei,
On 15/02/16 14:44, Wei Liu wrote:
> On Mon, Feb 15, 2016 at 02:33:05PM +0100, Juergen Gross wrote:
>> On 15/02/16 14:16, Wei Liu wrote:
>>> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
>>>>>
>>> [...]
>>>>> # Option 2: Invent a xen-9p device
>>>>>
>>>>> Another way of doing it is to expose a dummy xen-9p device, so that we
>>>>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
>>>>> used to capture the parameters like mount_tag and fsdev_id, and then
>>>>> chained itself to a known location. Later Xen transport can traverse
>>>>> this known location. This xen-9p device doesn't seem to fit well into
>>>>> the hierarchy. The best I can think of its parent should be
>>>>> TYPE_DEVICE. In this case:
>>>>>
>>>>> 1. Toolstack arranges some xenstore entries.
>>>>> 2. Toolstack arranges command line options for QEMU:
>>>>> -fsdev XXX -device xen-9p,XXX
>>>>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
>>>>> entries, then traverses the known location.
>>>>>
>>>>> Downside: Inventing a dummy device looks suboptimal to me.
>>
>> Sorry, didn't notice this thread before.
>>
>
> No need to be sorry. I posted this last Friday night. I wouldn't expect
> many replies on Monady.
>
>> For Xen pvUSB backend in qemu I need a Xen system device acting as
>> parent for being able to attach/detach virtual USB busses.
>>
>> I haven't had time to update my patches for some time, but the patch
>> for this system device is rather easy. It could be used as a parent
>> of the xen-9p devices, too.
>>
>> I've attached the patch for reference.
>>
>
> Thanks. I will have a look at your patch.
Did you have some time to look at the patch? I'm asking because I
finally found some time to start working on V2 of my qemu based pvUSB
backend. Stefano asked me to hide the system device in my backend and
I want to avoid that in case you are needing it, too.
Juergen
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] [Xen-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-02-15 13:44 ` [Qemu-devel] [Xen-devel] " Wei Liu
2016-03-07 7:21 ` [Qemu-devel] " Juergen Gross
@ 2016-03-07 7:21 ` Juergen Gross
2016-03-07 10:51 ` Wei Liu
2016-03-07 10:51 ` Wei Liu
1 sibling, 2 replies; 21+ messages in thread
From: Juergen Gross @ 2016-03-07 7:21 UTC (permalink / raw)
To: Wei Liu
Cc: qemu-devel@nongnu.org, Paul Durrant, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
Hi Wei,
On 15/02/16 14:44, Wei Liu wrote:
> On Mon, Feb 15, 2016 at 02:33:05PM +0100, Juergen Gross wrote:
>> On 15/02/16 14:16, Wei Liu wrote:
>>> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
>>>>>
>>> [...]
>>>>> # Option 2: Invent a xen-9p device
>>>>>
>>>>> Another way of doing it is to expose a dummy xen-9p device, so that we
>>>>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
>>>>> used to capture the parameters like mount_tag and fsdev_id, and then
>>>>> chained itself to a known location. Later Xen transport can traverse
>>>>> this known location. This xen-9p device doesn't seem to fit well into
>>>>> the hierarchy. The best I can think of its parent should be
>>>>> TYPE_DEVICE. In this case:
>>>>>
>>>>> 1. Toolstack arranges some xenstore entries.
>>>>> 2. Toolstack arranges command line options for QEMU:
>>>>> -fsdev XXX -device xen-9p,XXX
>>>>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
>>>>> entries, then traverses the known location.
>>>>>
>>>>> Downside: Inventing a dummy device looks suboptimal to me.
>>
>> Sorry, didn't notice this thread before.
>>
>
> No need to be sorry. I posted this last Friday night. I wouldn't expect
> many replies on Monady.
>
>> For Xen pvUSB backend in qemu I need a Xen system device acting as
>> parent for being able to attach/detach virtual USB busses.
>>
>> I haven't had time to update my patches for some time, but the patch
>> for this system device is rather easy. It could be used as a parent
>> of the xen-9p devices, too.
>>
>> I've attached the patch for reference.
>>
>
> Thanks. I will have a look at your patch.
Did you have some time to look at the patch? I'm asking because I
finally found some time to start working on V2 of my qemu based pvUSB
backend. Stefano asked me to hide the system device in my backend and
I want to avoid that in case you are needing it, too.
Juergen
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] [Xen-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-03-07 7:21 ` [Qemu-devel] [Xen-devel] " Juergen Gross
@ 2016-03-07 10:51 ` Wei Liu
2016-03-07 10:56 ` Juergen Gross
2016-03-07 10:56 ` Juergen Gross
2016-03-07 10:51 ` Wei Liu
1 sibling, 2 replies; 21+ messages in thread
From: Wei Liu @ 2016-03-07 10:51 UTC (permalink / raw)
To: Juergen Gross
Cc: Wei Liu, qemu-devel@nongnu.org, Paul Durrant, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
On Mon, Mar 07, 2016 at 08:21:46AM +0100, Juergen Gross wrote:
> Hi Wei,
>
> On 15/02/16 14:44, Wei Liu wrote:
> > On Mon, Feb 15, 2016 at 02:33:05PM +0100, Juergen Gross wrote:
> >> On 15/02/16 14:16, Wei Liu wrote:
> >>> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
> >>>>>
> >>> [...]
> >>>>> # Option 2: Invent a xen-9p device
> >>>>>
> >>>>> Another way of doing it is to expose a dummy xen-9p device, so that we
> >>>>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
> >>>>> used to capture the parameters like mount_tag and fsdev_id, and then
> >>>>> chained itself to a known location. Later Xen transport can traverse
> >>>>> this known location. This xen-9p device doesn't seem to fit well into
> >>>>> the hierarchy. The best I can think of its parent should be
> >>>>> TYPE_DEVICE. In this case:
> >>>>>
> >>>>> 1. Toolstack arranges some xenstore entries.
> >>>>> 2. Toolstack arranges command line options for QEMU:
> >>>>> -fsdev XXX -device xen-9p,XXX
> >>>>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
> >>>>> entries, then traverses the known location.
> >>>>>
> >>>>> Downside: Inventing a dummy device looks suboptimal to me.
> >>
> >> Sorry, didn't notice this thread before.
> >>
> >
> > No need to be sorry. I posted this last Friday night. I wouldn't expect
> > many replies on Monady.
> >
> >> For Xen pvUSB backend in qemu I need a Xen system device acting as
> >> parent for being able to attach/detach virtual USB busses.
> >>
> >> I haven't had time to update my patches for some time, but the patch
> >> for this system device is rather easy. It could be used as a parent
> >> of the xen-9p devices, too.
> >>
> >> I've attached the patch for reference.
> >>
> >
> > Thanks. I will have a look at your patch.
>
> Did you have some time to look at the patch? I'm asking because I
> finally found some time to start working on V2 of my qemu based pvUSB
> backend. Stefano asked me to hide the system device in my backend and
> I want to avoid that in case you are needing it, too.
>
Yes. I need this device. I'm not sure what "hiding this device in
backend" means though.
Wei.
> Juergen
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] [Xen-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-03-07 10:51 ` Wei Liu
@ 2016-03-07 10:56 ` Juergen Gross
2016-03-07 10:59 ` Wei Liu
2016-03-07 10:59 ` [Qemu-devel] " Wei Liu
2016-03-07 10:56 ` Juergen Gross
1 sibling, 2 replies; 21+ messages in thread
From: Juergen Gross @ 2016-03-07 10:56 UTC (permalink / raw)
To: Wei Liu
Cc: qemu-devel@nongnu.org, Paul Durrant, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
On 07/03/16 11:51, Wei Liu wrote:
> On Mon, Mar 07, 2016 at 08:21:46AM +0100, Juergen Gross wrote:
>> Hi Wei,
>>
>> On 15/02/16 14:44, Wei Liu wrote:
>>> On Mon, Feb 15, 2016 at 02:33:05PM +0100, Juergen Gross wrote:
>>>> On 15/02/16 14:16, Wei Liu wrote:
>>>>> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
>>>>>>>
>>>>> [...]
>>>>>>> # Option 2: Invent a xen-9p device
>>>>>>>
>>>>>>> Another way of doing it is to expose a dummy xen-9p device, so that we
>>>>>>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
>>>>>>> used to capture the parameters like mount_tag and fsdev_id, and then
>>>>>>> chained itself to a known location. Later Xen transport can traverse
>>>>>>> this known location. This xen-9p device doesn't seem to fit well into
>>>>>>> the hierarchy. The best I can think of its parent should be
>>>>>>> TYPE_DEVICE. In this case:
>>>>>>>
>>>>>>> 1. Toolstack arranges some xenstore entries.
>>>>>>> 2. Toolstack arranges command line options for QEMU:
>>>>>>> -fsdev XXX -device xen-9p,XXX
>>>>>>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
>>>>>>> entries, then traverses the known location.
>>>>>>>
>>>>>>> Downside: Inventing a dummy device looks suboptimal to me.
>>>>
>>>> Sorry, didn't notice this thread before.
>>>>
>>>
>>> No need to be sorry. I posted this last Friday night. I wouldn't expect
>>> many replies on Monady.
>>>
>>>> For Xen pvUSB backend in qemu I need a Xen system device acting as
>>>> parent for being able to attach/detach virtual USB busses.
>>>>
>>>> I haven't had time to update my patches for some time, but the patch
>>>> for this system device is rather easy. It could be used as a parent
>>>> of the xen-9p devices, too.
>>>>
>>>> I've attached the patch for reference.
>>>>
>>>
>>> Thanks. I will have a look at your patch.
>>
>> Did you have some time to look at the patch? I'm asking because I
>> finally found some time to start working on V2 of my qemu based pvUSB
>> backend. Stefano asked me to hide the system device in my backend and
>> I want to avoid that in case you are needing it, too.
>>
>
> Yes. I need this device. I'm not sure what "hiding this device in
> backend" means though.
Stefano wanted it to be pvusb backend private: instead of adding it to
hw/xenpv/xen_machine_pv.c he wanted me to add it to hw/usb/xen-usb.c
where it would be usable by the pvUSB backend only.
With you needing that device I can leave the patch more or less
unmodified (some rebasing to the actual qemu version is needed).
Thanks for looking into the patch,
Juergen
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] [Xen-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-03-07 10:56 ` Juergen Gross
@ 2016-03-07 10:59 ` Wei Liu
2016-03-07 10:59 ` [Qemu-devel] " Wei Liu
1 sibling, 0 replies; 21+ messages in thread
From: Wei Liu @ 2016-03-07 10:59 UTC (permalink / raw)
To: Juergen Gross
Cc: Wei Liu, qemu-devel@nongnu.org, Paul Durrant, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
On Mon, Mar 07, 2016 at 11:56:15AM +0100, Juergen Gross wrote:
> On 07/03/16 11:51, Wei Liu wrote:
> > On Mon, Mar 07, 2016 at 08:21:46AM +0100, Juergen Gross wrote:
> >> Hi Wei,
> >>
> >> On 15/02/16 14:44, Wei Liu wrote:
> >>> On Mon, Feb 15, 2016 at 02:33:05PM +0100, Juergen Gross wrote:
> >>>> On 15/02/16 14:16, Wei Liu wrote:
> >>>>> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
> >>>>>>>
> >>>>> [...]
> >>>>>>> # Option 2: Invent a xen-9p device
> >>>>>>>
> >>>>>>> Another way of doing it is to expose a dummy xen-9p device, so that we
> >>>>>>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
> >>>>>>> used to capture the parameters like mount_tag and fsdev_id, and then
> >>>>>>> chained itself to a known location. Later Xen transport can traverse
> >>>>>>> this known location. This xen-9p device doesn't seem to fit well into
> >>>>>>> the hierarchy. The best I can think of its parent should be
> >>>>>>> TYPE_DEVICE. In this case:
> >>>>>>>
> >>>>>>> 1. Toolstack arranges some xenstore entries.
> >>>>>>> 2. Toolstack arranges command line options for QEMU:
> >>>>>>> -fsdev XXX -device xen-9p,XXX
> >>>>>>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
> >>>>>>> entries, then traverses the known location.
> >>>>>>>
> >>>>>>> Downside: Inventing a dummy device looks suboptimal to me.
> >>>>
> >>>> Sorry, didn't notice this thread before.
> >>>>
> >>>
> >>> No need to be sorry. I posted this last Friday night. I wouldn't expect
> >>> many replies on Monady.
> >>>
> >>>> For Xen pvUSB backend in qemu I need a Xen system device acting as
> >>>> parent for being able to attach/detach virtual USB busses.
> >>>>
> >>>> I haven't had time to update my patches for some time, but the patch
> >>>> for this system device is rather easy. It could be used as a parent
> >>>> of the xen-9p devices, too.
> >>>>
> >>>> I've attached the patch for reference.
> >>>>
> >>>
> >>> Thanks. I will have a look at your patch.
> >>
> >> Did you have some time to look at the patch? I'm asking because I
> >> finally found some time to start working on V2 of my qemu based pvUSB
> >> backend. Stefano asked me to hide the system device in my backend and
> >> I want to avoid that in case you are needing it, too.
> >>
> >
> > Yes. I need this device. I'm not sure what "hiding this device in
> > backend" means though.
>
> Stefano wanted it to be pvusb backend private: instead of adding it to
> hw/xenpv/xen_machine_pv.c he wanted me to add it to hw/usb/xen-usb.c
> where it would be usable by the pvUSB backend only.
>
> With you needing that device I can leave the patch more or less
> unmodified (some rebasing to the actual qemu version is needed).
>
Yes, please make it available to other PV backends. Someone might want
to graft every device we have to that hierarchy some day later. ;-)
> Thanks for looking into the patch,
>
Thanks for posting this patch and sorry for the long delay.
Wei.
> Juergen
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-03-07 10:56 ` Juergen Gross
2016-03-07 10:59 ` Wei Liu
@ 2016-03-07 10:59 ` Wei Liu
1 sibling, 0 replies; 21+ messages in thread
From: Wei Liu @ 2016-03-07 10:59 UTC (permalink / raw)
To: Juergen Gross
Cc: Wei Liu, qemu-devel@nongnu.org, Paul Durrant, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
On Mon, Mar 07, 2016 at 11:56:15AM +0100, Juergen Gross wrote:
> On 07/03/16 11:51, Wei Liu wrote:
> > On Mon, Mar 07, 2016 at 08:21:46AM +0100, Juergen Gross wrote:
> >> Hi Wei,
> >>
> >> On 15/02/16 14:44, Wei Liu wrote:
> >>> On Mon, Feb 15, 2016 at 02:33:05PM +0100, Juergen Gross wrote:
> >>>> On 15/02/16 14:16, Wei Liu wrote:
> >>>>> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
> >>>>>>>
> >>>>> [...]
> >>>>>>> # Option 2: Invent a xen-9p device
> >>>>>>>
> >>>>>>> Another way of doing it is to expose a dummy xen-9p device, so that we
> >>>>>>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
> >>>>>>> used to capture the parameters like mount_tag and fsdev_id, and then
> >>>>>>> chained itself to a known location. Later Xen transport can traverse
> >>>>>>> this known location. This xen-9p device doesn't seem to fit well into
> >>>>>>> the hierarchy. The best I can think of its parent should be
> >>>>>>> TYPE_DEVICE. In this case:
> >>>>>>>
> >>>>>>> 1. Toolstack arranges some xenstore entries.
> >>>>>>> 2. Toolstack arranges command line options for QEMU:
> >>>>>>> -fsdev XXX -device xen-9p,XXX
> >>>>>>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
> >>>>>>> entries, then traverses the known location.
> >>>>>>>
> >>>>>>> Downside: Inventing a dummy device looks suboptimal to me.
> >>>>
> >>>> Sorry, didn't notice this thread before.
> >>>>
> >>>
> >>> No need to be sorry. I posted this last Friday night. I wouldn't expect
> >>> many replies on Monady.
> >>>
> >>>> For Xen pvUSB backend in qemu I need a Xen system device acting as
> >>>> parent for being able to attach/detach virtual USB busses.
> >>>>
> >>>> I haven't had time to update my patches for some time, but the patch
> >>>> for this system device is rather easy. It could be used as a parent
> >>>> of the xen-9p devices, too.
> >>>>
> >>>> I've attached the patch for reference.
> >>>>
> >>>
> >>> Thanks. I will have a look at your patch.
> >>
> >> Did you have some time to look at the patch? I'm asking because I
> >> finally found some time to start working on V2 of my qemu based pvUSB
> >> backend. Stefano asked me to hide the system device in my backend and
> >> I want to avoid that in case you are needing it, too.
> >>
> >
> > Yes. I need this device. I'm not sure what "hiding this device in
> > backend" means though.
>
> Stefano wanted it to be pvusb backend private: instead of adding it to
> hw/xenpv/xen_machine_pv.c he wanted me to add it to hw/usb/xen-usb.c
> where it would be usable by the pvUSB backend only.
>
> With you needing that device I can leave the patch more or less
> unmodified (some rebasing to the actual qemu version is needed).
>
Yes, please make it available to other PV backends. Someone might want
to graft every device we have to that hierarchy some day later. ;-)
> Thanks for looking into the patch,
>
Thanks for posting this patch and sorry for the long delay.
Wei.
> Juergen
>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-03-07 10:51 ` Wei Liu
2016-03-07 10:56 ` Juergen Gross
@ 2016-03-07 10:56 ` Juergen Gross
1 sibling, 0 replies; 21+ messages in thread
From: Juergen Gross @ 2016-03-07 10:56 UTC (permalink / raw)
To: Wei Liu
Cc: qemu-devel@nongnu.org, Paul Durrant, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
On 07/03/16 11:51, Wei Liu wrote:
> On Mon, Mar 07, 2016 at 08:21:46AM +0100, Juergen Gross wrote:
>> Hi Wei,
>>
>> On 15/02/16 14:44, Wei Liu wrote:
>>> On Mon, Feb 15, 2016 at 02:33:05PM +0100, Juergen Gross wrote:
>>>> On 15/02/16 14:16, Wei Liu wrote:
>>>>> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
>>>>>>>
>>>>> [...]
>>>>>>> # Option 2: Invent a xen-9p device
>>>>>>>
>>>>>>> Another way of doing it is to expose a dummy xen-9p device, so that we
>>>>>>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
>>>>>>> used to capture the parameters like mount_tag and fsdev_id, and then
>>>>>>> chained itself to a known location. Later Xen transport can traverse
>>>>>>> this known location. This xen-9p device doesn't seem to fit well into
>>>>>>> the hierarchy. The best I can think of its parent should be
>>>>>>> TYPE_DEVICE. In this case:
>>>>>>>
>>>>>>> 1. Toolstack arranges some xenstore entries.
>>>>>>> 2. Toolstack arranges command line options for QEMU:
>>>>>>> -fsdev XXX -device xen-9p,XXX
>>>>>>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
>>>>>>> entries, then traverses the known location.
>>>>>>>
>>>>>>> Downside: Inventing a dummy device looks suboptimal to me.
>>>>
>>>> Sorry, didn't notice this thread before.
>>>>
>>>
>>> No need to be sorry. I posted this last Friday night. I wouldn't expect
>>> many replies on Monady.
>>>
>>>> For Xen pvUSB backend in qemu I need a Xen system device acting as
>>>> parent for being able to attach/detach virtual USB busses.
>>>>
>>>> I haven't had time to update my patches for some time, but the patch
>>>> for this system device is rather easy. It could be used as a parent
>>>> of the xen-9p devices, too.
>>>>
>>>> I've attached the patch for reference.
>>>>
>>>
>>> Thanks. I will have a look at your patch.
>>
>> Did you have some time to look at the patch? I'm asking because I
>> finally found some time to start working on V2 of my qemu based pvUSB
>> backend. Stefano asked me to hide the system device in my backend and
>> I want to avoid that in case you are needing it, too.
>>
>
> Yes. I need this device. I'm not sure what "hiding this device in
> backend" means though.
Stefano wanted it to be pvusb backend private: instead of adding it to
hw/xenpv/xen_machine_pv.c he wanted me to add it to hw/usb/xen-usb.c
where it would be usable by the pvUSB backend only.
With you needing that device I can leave the patch more or less
unmodified (some rebasing to the actual qemu version is needed).
Thanks for looking into the patch,
Juergen
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-03-07 7:21 ` [Qemu-devel] [Xen-devel] " Juergen Gross
2016-03-07 10:51 ` Wei Liu
@ 2016-03-07 10:51 ` Wei Liu
1 sibling, 0 replies; 21+ messages in thread
From: Wei Liu @ 2016-03-07 10:51 UTC (permalink / raw)
To: Juergen Gross
Cc: Wei Liu, qemu-devel@nongnu.org, Paul Durrant, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
On Mon, Mar 07, 2016 at 08:21:46AM +0100, Juergen Gross wrote:
> Hi Wei,
>
> On 15/02/16 14:44, Wei Liu wrote:
> > On Mon, Feb 15, 2016 at 02:33:05PM +0100, Juergen Gross wrote:
> >> On 15/02/16 14:16, Wei Liu wrote:
> >>> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
> >>>>>
> >>> [...]
> >>>>> # Option 2: Invent a xen-9p device
> >>>>>
> >>>>> Another way of doing it is to expose a dummy xen-9p device, so that we
> >>>>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
> >>>>> used to capture the parameters like mount_tag and fsdev_id, and then
> >>>>> chained itself to a known location. Later Xen transport can traverse
> >>>>> this known location. This xen-9p device doesn't seem to fit well into
> >>>>> the hierarchy. The best I can think of its parent should be
> >>>>> TYPE_DEVICE. In this case:
> >>>>>
> >>>>> 1. Toolstack arranges some xenstore entries.
> >>>>> 2. Toolstack arranges command line options for QEMU:
> >>>>> -fsdev XXX -device xen-9p,XXX
> >>>>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
> >>>>> entries, then traverses the known location.
> >>>>>
> >>>>> Downside: Inventing a dummy device looks suboptimal to me.
> >>
> >> Sorry, didn't notice this thread before.
> >>
> >
> > No need to be sorry. I posted this last Friday night. I wouldn't expect
> > many replies on Monady.
> >
> >> For Xen pvUSB backend in qemu I need a Xen system device acting as
> >> parent for being able to attach/detach virtual USB busses.
> >>
> >> I haven't had time to update my patches for some time, but the patch
> >> for this system device is rather easy. It could be used as a parent
> >> of the xen-9p devices, too.
> >>
> >> I've attached the patch for reference.
> >>
> >
> > Thanks. I will have a look at your patch.
>
> Did you have some time to look at the patch? I'm asking because I
> finally found some time to start working on V2 of my qemu based pvUSB
> backend. Stefano asked me to hide the system device in my backend and
> I want to avoid that in case you are needing it, too.
>
Yes. I need this device. I'm not sure what "hiding this device in
backend" means though.
Wei.
> Juergen
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] RFC: configuring QEMU virtfs for Xen PV(H) guests
2016-02-15 13:16 ` Wei Liu
` (2 preceding siblings ...)
2016-02-15 13:33 ` [Qemu-devel] [Xen-devel] " Juergen Gross
@ 2016-02-15 13:33 ` Juergen Gross
3 siblings, 0 replies; 21+ messages in thread
From: Juergen Gross @ 2016-02-15 13:33 UTC (permalink / raw)
To: Wei Liu, Paul Durrant
Cc: qemu-devel@nongnu.org, Stefano Stabellini,
aneesh.kumar@linux.vnet.ibm.com, Anthony Perard, Xen-devel,
gkurz@linux.vnet.ibm.com
[-- Attachment #1: Type: text/plain, Size: 1341 bytes --]
On 15/02/16 14:16, Wei Liu wrote:
> On Mon, Feb 15, 2016 at 09:07:13AM +0000, Paul Durrant wrote:
>>>
> [...]
>>> # Option 2: Invent a xen-9p device
>>>
>>> Another way of doing it is to expose a dummy xen-9p device, so that we
>>> can use -fsdev XXX -device xen-9p,YYY. This simple device should be
>>> used to capture the parameters like mount_tag and fsdev_id, and then
>>> chained itself to a known location. Later Xen transport can traverse
>>> this known location. This xen-9p device doesn't seem to fit well into
>>> the hierarchy. The best I can think of its parent should be
>>> TYPE_DEVICE. In this case:
>>>
>>> 1. Toolstack arranges some xenstore entries.
>>> 2. Toolstack arranges command line options for QEMU:
>>> -fsdev XXX -device xen-9p,XXX
>>> 3. QEMU starts up in xen-attach mode, scans xenstore for relevant
>>> entries, then traverses the known location.
>>>
>>> Downside: Inventing a dummy device looks suboptimal to me.
Sorry, didn't notice this thread before.
For Xen pvUSB backend in qemu I need a Xen system device acting as
parent for being able to attach/detach virtual USB busses.
I haven't had time to update my patches for some time, but the patch
for this system device is rather easy. It could be used as a parent
of the xen-9p devices, too.
I've attached the patch for reference.
Juergen
[-- Attachment #2: 0001-xen-introduce-dummy-system-device.patch --]
[-- Type: text/x-patch, Size: 3131 bytes --]
>From 1bc23acf54e60c666b1ec8e3f59c7e5550423e6f Mon Sep 17 00:00:00 2001
From: Juergen Gross <jgross@suse.com>
Date: Thu, 3 Sep 2015 11:54:50 +0200
Subject: [Patch V1 1/3] xen: introduce dummy system device
Introduce a new dummy system device serving as parent for virtual
buses. This will enable new pv backends to introduce virtual buses
which are removable again opposed to system buses which are meant
to stay once added.
Signed-off-by: Juergen Gross <jgross@suse.com>
---
hw/xenpv/xen_machine_pv.c | 39 +++++++++++++++++++++++++++++++++++++++
include/hw/xen/xen_backend.h | 1 +
2 files changed, 40 insertions(+)
diff --git a/hw/xenpv/xen_machine_pv.c b/hw/xenpv/xen_machine_pv.c
index 2e545d2..57bc071 100644
--- a/hw/xenpv/xen_machine_pv.c
+++ b/hw/xenpv/xen_machine_pv.c
@@ -24,10 +24,15 @@
#include "hw/hw.h"
#include "hw/boards.h"
+#include "hw/sysbus.h"
#include "hw/xen/xen_backend.h"
#include "xen_domainbuild.h"
#include "sysemu/block-backend.h"
+#define TYPE_XENSYSDEV "xensysdev"
+
+DeviceState *xen_sysdev;
+
static void xen_init_pv(MachineState *machine)
{
const char *kernel_filename = machine->kernel_filename;
@@ -59,6 +64,9 @@ static void xen_init_pv(MachineState *machine)
break;
}
+ xen_sysdev = qdev_create(NULL, TYPE_XENSYSDEV);
+ qdev_init_nofail(xen_sysdev);
+
xen_be_register("console", &xen_console_ops);
xen_be_register("vkbd", &xen_kbdmouse_ops);
xen_be_register("vfb", &xen_framebuffer_ops);
@@ -93,6 +101,31 @@ static void xen_init_pv(MachineState *machine)
xen_init_display(xen_domid);
}
+static int xen_sysdev_init(SysBusDevice *dev)
+{
+ return 0;
+}
+
+static Property xen_sysdev_properties[] = {
+ {/* end of property list */},
+};
+
+static void xen_sysdev_class_init(ObjectClass *klass, void *data)
+{
+ DeviceClass *dc = DEVICE_CLASS(klass);
+ SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
+
+ k->init = xen_sysdev_init;
+ dc->props = xen_sysdev_properties;
+}
+
+static const TypeInfo xensysdev_info = {
+ .name = TYPE_XENSYSDEV,
+ .parent = TYPE_SYS_BUS_DEVICE,
+ .instance_size = sizeof(SysBusDevice),
+ .class_init = xen_sysdev_class_init,
+};
+
static QEMUMachine xenpv_machine = {
.name = "xenpv",
.desc = "Xen Para-virtualized PC",
@@ -101,9 +134,15 @@ static QEMUMachine xenpv_machine = {
.default_machine_opts = "accel=xen",
};
+static void xenpv_register_types(void)
+{
+ type_register_static(&xensysdev_info);
+}
+
static void xenpv_machine_init(void)
{
qemu_register_machine(&xenpv_machine);
}
+type_init(xenpv_register_types)
machine_init(xenpv_machine_init);
diff --git a/include/hw/xen/xen_backend.h b/include/hw/xen/xen_backend.h
index 3b4125e..911ba6d 100644
--- a/include/hw/xen/xen_backend.h
+++ b/include/hw/xen/xen_backend.h
@@ -59,6 +59,7 @@ struct XenDevice {
extern XenXC xen_xc;
extern struct xs_handle *xenstore;
extern const char *xen_protocol;
+extern DeviceState *xen_sysdev;
/* xenstore helper functions */
int xenstore_write_str(const char *base, const char *node, const char *val);
--
2.1.4
[-- Attachment #3: Type: text/plain, Size: 126 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
^ permalink raw reply related [flat|nested] 21+ messages in thread