All of lore.kernel.org
 help / color / mirror / Atom feed
From: Juergen Gross <jgross@suse.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: xen-devel@lists.xensource.com, qemu-devel@nongnu.org, kraxel@redhat.com
Subject: Re: [Qemu-devel] [Xen-devel] [Patch V1 1/3] xen: introduce dummy system device
Date: Wed, 9 Sep 2015 13:01:29 +0200	[thread overview]
Message-ID: <55F01189.5090204@suse.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1509071626310.2672@kaball.uk.xensource.com>

On 09/07/2015 05:29 PM, Stefano Stabellini wrote:
> On Thu, 3 Sep 2015, Juergen Gross wrote:
>> 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);
>> +}
>
> Given that you need this just for usbback, I wonder if you could
> move xen_sysdev and its initalization to usbback_init.

Sure I could. OTOH I think this system device could really be of common
interest.


Juergen

WARNING: multiple messages have this Message-ID (diff)
From: Juergen Gross <jgross@suse.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: xen-devel@lists.xensource.com, qemu-devel@nongnu.org, kraxel@redhat.com
Subject: Re: [Xen-devel] [Patch V1 1/3] xen: introduce dummy system device
Date: Wed, 9 Sep 2015 13:01:29 +0200	[thread overview]
Message-ID: <55F01189.5090204@suse.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1509071626310.2672@kaball.uk.xensource.com>

On 09/07/2015 05:29 PM, Stefano Stabellini wrote:
> On Thu, 3 Sep 2015, Juergen Gross wrote:
>> 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);
>> +}
>
> Given that you need this just for usbback, I wonder if you could
> move xen_sysdev and its initalization to usbback_init.

Sure I could. OTOH I think this system device could really be of common
interest.


Juergen

  reply	other threads:[~2015-09-09 11:01 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-03 10:45 [Qemu-devel] [Patch V1 0/3] usb, xen: add pvUSB backend Juergen Gross
2015-09-03 10:45 ` Juergen Gross
2015-09-03 10:45 ` [Qemu-devel] [Patch V1 1/3] xen: introduce dummy system device Juergen Gross
2015-09-03 10:45   ` Juergen Gross
2015-09-07 15:29   ` [Qemu-devel] " Stefano Stabellini
2015-09-07 15:29     ` Stefano Stabellini
2015-09-09 11:01     ` Juergen Gross [this message]
2015-09-09 11:01       ` [Xen-devel] " Juergen Gross
2015-09-03 10:45 ` [Qemu-devel] [Patch V1 2/3] xen/usb: add capability for passing through isoc jobs to host devices Juergen Gross
2015-09-03 10:45   ` Juergen Gross
2015-09-04 13:25   ` [Qemu-devel] " Gerd Hoffmann
2015-09-04 13:25     ` Gerd Hoffmann
2015-09-09 11:37     ` [Qemu-devel] " Juergen Gross
2015-09-09 11:37       ` Juergen Gross
2015-09-09 12:01       ` [Qemu-devel] " Gerd Hoffmann
2015-09-09 12:01         ` Gerd Hoffmann
2015-09-09 13:10         ` [Qemu-devel] " Juergen Gross
2015-09-09 13:10           ` Juergen Gross
2015-09-09 14:43           ` [Qemu-devel] " Gerd Hoffmann
2015-09-09 14:43             ` Gerd Hoffmann
2015-09-15 19:17   ` [Qemu-devel] [Xen-devel] " Konrad Rzeszutek Wilk
2015-09-15 19:17     ` Konrad Rzeszutek Wilk
2015-09-03 10:45 ` [Qemu-devel] [Patch V1 3/3] xen: add pvUSB backend Juergen Gross
2015-09-03 10:45   ` Juergen Gross
2015-09-07 17:38   ` [Qemu-devel] " Stefano Stabellini
2015-09-07 17:38     ` Stefano Stabellini
2015-09-09 11:22     ` [Qemu-devel] [Xen-devel] " Juergen Gross
2015-09-09 11:22       ` Juergen Gross
2015-09-09 13:13       ` [Qemu-devel] [Xen-devel] " Stefano Stabellini
2015-09-09 13:13         ` Stefano Stabellini
2015-10-27 18:54   ` [Qemu-devel] " Konrad Rzeszutek Wilk
2015-10-27 18:54     ` Konrad Rzeszutek Wilk
2016-03-07 12:43     ` [Qemu-devel] " Juergen Gross
2016-03-07 12:43       ` Juergen Gross

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=55F01189.5090204@suse.com \
    --to=jgross@suse.com \
    --cc=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefano.stabellini@eu.citrix.com \
    --cc=xen-devel@lists.xensource.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.