From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37472) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gS2vN-00060y-FP for qemu-devel@nongnu.org; Wed, 28 Nov 2018 11:42:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gS2kw-0000Fz-Jl for qemu-devel@nongnu.org; Wed, 28 Nov 2018 11:32:32 -0500 From: Paul Durrant Date: Wed, 28 Nov 2018 16:26:32 +0000 Message-ID: <48596f1fe100419c8b28ed54bda0117b@AMSPEX02CL03.citrite.net> References: <20181121151211.15997-1-paul.durrant@citrix.com> <20181121151211.15997-3-paul.durrant@citrix.com> <20181128161917.GE4222@dhcp-200-186.str.redhat.com> In-Reply-To: <20181128161917.GE4222@dhcp-200-186.str.redhat.com> Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [Qemu-devel] [Qemu-block] [PATCH 02/18] xen: introduce new 'XenBus' and 'XenDevice' object hierarchy List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: 'Kevin Wolf' Cc: "qemu-block@nongnu.org" , "qemu-devel@nongnu.org" , "xen-devel@lists.xenproject.org" , Stefano Stabellini , Eduardo Habkost , "Michael S. Tsirkin" , Marcel Apfelbaum , Anthony Perard , Paolo Bonzini , Richard Henderson > -----Original Message----- > From: Kevin Wolf [mailto:kwolf@redhat.com] > Sent: 28 November 2018 16:19 > To: Paul Durrant > Cc: qemu-block@nongnu.org; qemu-devel@nongnu.org; xen- > devel@lists.xenproject.org; Stefano Stabellini ; > Eduardo Habkost ; Michael S. Tsirkin > ; Marcel Apfelbaum ; Anthony > Perard ; Paolo Bonzini ; > Richard Henderson > Subject: Re: [Qemu-block] [PATCH 02/18] xen: introduce new 'XenBus' and > 'XenDevice' object hierarchy >=20 > Am 21.11.2018 um 16:11 hat Paul Durrant geschrieben: > > This patch adds the basic boilerplate for a 'XenBus' object that will > act > > as a parent to 'XenDevice' PV backends. > > A new 'XenBridge' object is also added to connect XenBus to the system > bus. > > > > The XenBus object is instantiated by a new xen_bus_init() function > called > > from the same sites as the legacy xen_be_init() function. > > > > Subsequent patches will flesh-out the functionality of these objects. > > > > Signed-off-by: Paul Durrant >=20 > > diff --git a/hw/xen/xen-bus.c b/hw/xen/xen-bus.c > > new file mode 100644 > > index 0000000000..dede2d914a > > --- /dev/null > > +++ b/hw/xen/xen-bus.c > > @@ -0,0 +1,125 @@ > > +/* > > + * Copyright (c) Citrix Systems Inc. > > + * All rights reserved. > > + */ >=20 > This doesn't look very compatible with the GPL. In fact it might even > make it illegal for the QEMU project to distribute this code. :-) >=20 > Other files you add throughout the series seem to have the same problem. >=20 I was working on the assumption that a lack of explicit license meant that = the overall project license as described in item 2 in LICENSE. Did I misint= erpret that text? Paul > Kevin