From: Anthony Liguori <aliguori@us.ibm.com>
To: Luiz Capitulino <lcapitulino@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 02/11] Add support for qfloat
Date: Mon, 19 Oct 2009 09:18:19 -0500 [thread overview]
Message-ID: <4ADC752B.90603@us.ibm.com> (raw)
In-Reply-To: <20091018202134.639c1d00@doriath>
Luiz Capitulino wrote:
> On Sat, 17 Oct 2009 08:36:02 -0500
> Anthony Liguori <aliguori@us.ibm.com> wrote:
>
>
>> qfloat is a qobject wrapper for double precision floating points
>>
>> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
>> ---
>> 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 <lcapitulino@redhat.com>
>> + *
>> + * 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 <aliguori@us.ibm.com>
>> + *
>> + * 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
next prev parent reply other threads:[~2009-10-19 14:18 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-17 13:36 [Qemu-devel] [PATCH 0/11] json parser (v2) Anthony Liguori
2009-10-17 13:36 ` [Qemu-devel] [PATCH 01/11] Add append method to qstring and empty constructor Anthony Liguori
2009-10-18 21:36 ` Luiz Capitulino
2009-10-23 19:33 ` Jamie Lokier
2009-10-17 13:36 ` [Qemu-devel] [PATCH 02/11] Add support for qfloat Anthony Liguori
2009-10-18 22:21 ` Luiz Capitulino
2009-10-19 14:18 ` Anthony Liguori [this message]
2009-10-22 8:49 ` Amit Shah
2009-10-22 14:01 ` Anthony Liguori
2009-10-22 14:05 ` Amit Shah
2009-10-23 19:25 ` Jamie Lokier
2009-10-23 19:36 ` Daniel P. Berrange
2009-10-17 13:36 ` [Qemu-devel] [PATCH 03/11] Add a test case " Anthony Liguori
2009-10-17 14:00 ` Edgar E. Iglesias
2009-10-17 16:21 ` Anthony Liguori
2009-10-17 13:36 ` [Qemu-devel] [PATCH 04/11] Add json->qobject parser Anthony Liguori
2009-10-23 17:45 ` Luiz Capitulino
2009-10-17 13:36 ` [Qemu-devel] [PATCH 05/11] Add unit test for json parser Anthony Liguori
2009-10-17 13:36 ` [Qemu-devel] [PATCH 06/11] qobject: add QBool type Anthony Liguori
2009-10-18 21:50 ` Luiz Capitulino
2009-10-19 14:17 ` Anthony Liguori
2009-10-19 14:21 ` Luiz Capitulino
2009-10-17 13:36 ` [Qemu-devel] [PATCH 07/11] qjson: Use QBool for true/false keywords Anthony Liguori
2009-10-17 13:36 ` [Qemu-devel] [PATCH 08/11] qjson: add %i for parsing bools Anthony Liguori
2009-10-17 13:36 ` [Qemu-devel] [PATCH 09/11] qjson: add unit test for varargs bool parsing Anthony Liguori
2009-10-17 13:36 ` [Qemu-devel] [PATCH 10/11] qjson: add vararg format for embedded qobjects Anthony Liguori
2009-10-17 13:36 ` [Qemu-devel] [PATCH 11/11] qjson: add unit test to check %p format Anthony Liguori
2009-10-18 21:34 ` [Qemu-devel] [PATCH 0/11] json parser (v2) Luiz Capitulino
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=4ADC752B.90603@us.ibm.com \
--to=aliguori@us.ibm.com \
--cc=lcapitulino@redhat.com \
--cc=qemu-devel@nongnu.org \
/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.