From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mzt4I-0007xr-JE for qemu-devel@nongnu.org; Mon, 19 Oct 2009 10:18:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mzt4D-0007vV-4i for qemu-devel@nongnu.org; Mon, 19 Oct 2009 10:18:37 -0400 Received: from [199.232.76.173] (port=58179 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mzt4C-0007vN-Se for qemu-devel@nongnu.org; Mon, 19 Oct 2009 10:18:32 -0400 Received: from e3.ny.us.ibm.com ([32.97.182.143]:60946) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Mzt4C-0001pl-Lj for qemu-devel@nongnu.org; Mon, 19 Oct 2009 10:18:32 -0400 Received: from d01relay06.pok.ibm.com (d01relay06.pok.ibm.com [9.56.227.116]) by e3.ny.us.ibm.com (8.14.3/8.13.1) with ESMTP id n9JEAa9D019568 for ; Mon, 19 Oct 2009 10:10:36 -0400 Received: from d03av02.boulder.ibm.com (d03av02.boulder.ibm.com [9.17.195.168]) by d01relay06.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id n9JEIUNG2597070 for ; Mon, 19 Oct 2009 10:18:30 -0400 Received: from d03av02.boulder.ibm.com (loopback [127.0.0.1]) by d03av02.boulder.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id n9JEIK52021124 for ; Mon, 19 Oct 2009 08:18:20 -0600 Message-ID: <4ADC752B.90603@us.ibm.com> Date: Mon, 19 Oct 2009 09:18:19 -0500 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH 02/11] Add support for qfloat References: <1255786571-3528-1-git-send-email-aliguori@us.ibm.com> <1255786571-3528-3-git-send-email-aliguori@us.ibm.com> <20091018202134.639c1d00@doriath> In-Reply-To: <20091018202134.639c1d00@doriath> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Luiz Capitulino Cc: qemu-devel@nongnu.org Luiz Capitulino wrote: > On Sat, 17 Oct 2009 08:36:02 -0500 > Anthony Liguori wrote: > > >> qfloat is a qobject wrapper for double precision floating points >> >> Signed-off-by: Anthony Liguori >> --- >> Makefile | 3 +- >> qfloat.c | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ >> qfloat.h | 29 +++++++++++++++++++++++ >> qobject.h | 1 + >> 4 files changed, 108 insertions(+), 1 deletions(-) >> create mode 100644 qfloat.c >> create mode 100644 qfloat.h >> >> diff --git a/Makefile b/Makefile >> index e78a3d0..9294638 100644 >> --- a/Makefile >> +++ b/Makefile >> @@ -125,7 +125,8 @@ obj-y += net.o net-queue.o >> obj-y += qemu-char.o aio.o net-checksum.o savevm.o >> obj-y += msmouse.o ps2.o >> obj-y += qdev.o qdev-properties.o >> -obj-y += qint.o qstring.o qdict.o qlist.o qemu-config.o >> +obj-y += qint.o qstring.o qdict.o qlist.o qfloat.o >> +obj-y += qemu-config.o >> >> obj-$(CONFIG_BRLAPI) += baum.o >> obj-$(CONFIG_WIN32) += tap-win32.o >> diff --git a/qfloat.c b/qfloat.c >> new file mode 100644 >> index 0000000..05215f5 >> --- /dev/null >> +++ b/qfloat.c >> @@ -0,0 +1,76 @@ >> +/* >> + * QFloat Module >> + * >> + * Copyright (C) 2009 Red Hat Inc. >> + * >> + * Authors: >> + * Luiz Capitulino >> + * >> + * This work is licensed under the terms of the GNU GPL, version 2. See >> + * the COPYING file in the top-level directory. >> + * >> + * Copyright IBM, Corp. 2009 >> + * >> + * Authors: >> + * Anthony Liguori >> + * >> + * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. >> + * See the COPYING.LIB file in the top-level directory. >> + * >> + */ >> > > I see you're double licensing it to respect my initial choice, but you > can leave only LGPL for this new code. > > I will send patches changing the ones written by me. > Great, I'm hoping we can make the whole thing LGPL 2.1+ so that we can allow libraries like libvirt to use it. Regards, Anthony Liguori -- Regards, Anthony Liguori