From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mze8a-0001P0-Dh for qemu-devel@nongnu.org; Sun, 18 Oct 2009 18:22:04 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mze8V-0001KJ-Fv for qemu-devel@nongnu.org; Sun, 18 Oct 2009 18:22:03 -0400 Received: from [199.232.76.173] (port=57407 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mze8V-0001K5-3I for qemu-devel@nongnu.org; Sun, 18 Oct 2009 18:21:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56013) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mze8U-0007EF-Mw for qemu-devel@nongnu.org; Sun, 18 Oct 2009 18:21:58 -0400 Date: Sun, 18 Oct 2009 20:21:34 -0200 From: Luiz Capitulino Subject: Re: [Qemu-devel] [PATCH 02/11] Add support for qfloat Message-ID: <20091018202134.639c1d00@doriath> In-Reply-To: <1255786571-3528-3-git-send-email-aliguori@us.ibm.com> References: <1255786571-3528-1-git-send-email-aliguori@us.ibm.com> <1255786571-3528-3-git-send-email-aliguori@us.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org 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.