From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49353) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W40Iq-0002Xh-TV for qemu-devel@nongnu.org; Thu, 16 Jan 2014 22:41:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W40Ih-0004Km-Ug for qemu-devel@nongnu.org; Thu, 16 Jan 2014 22:41:04 -0500 Received: from e23smtp02.au.ibm.com ([202.81.31.144]:39173) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W40Id-0004Jy-Qg for qemu-devel@nongnu.org; Thu, 16 Jan 2014 22:40:55 -0500 Received: from /spool/local by e23smtp02.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 17 Jan 2014 13:40:44 +1000 Received: from d23relay03.au.ibm.com (d23relay03.au.ibm.com [9.190.235.21]) by d23dlp02.au.ibm.com (Postfix) with ESMTP id E49F42BB0053 for ; Fri, 17 Jan 2014 14:40:41 +1100 (EST) Received: from d23av04.au.ibm.com (d23av04.au.ibm.com [9.190.235.139]) by d23relay03.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id s0H3eSi02818442 for ; Fri, 17 Jan 2014 14:40:28 +1100 Received: from d23av04.au.ibm.com (localhost [127.0.0.1]) by d23av04.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s0H3efUT029412 for ; Fri, 17 Jan 2014 14:40:41 +1100 Message-ID: <52D8A637.5060405@linux.vnet.ibm.com> Date: Fri, 17 Jan 2014 11:40:39 +0800 From: Lei Li MIME-Version: 1.0 References: <1389172376-30636-1-git-send-email-lilei@linux.vnet.ibm.com> <1389172376-30636-2-git-send-email-lilei@linux.vnet.ibm.com> <52D7F7E7.7030704@redhat.com> In-Reply-To: <52D7F7E7.7030704@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1/6] qemu-fd-exchange: provide common methods for exchange fd List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Blake Cc: pbonzini@redhat.com, mohan@in.ibm.com, qemu-devel@nongnu.org On 01/16/2014 11:16 PM, Eric Blake wrote: > On 01/08/2014 02:12 AM, Lei Li wrote: >> Signed-off-by: Lei Li >> --- >> include/qemu/fd-exchange.h | 25 +++++++++++ >> util/Makefile.objs | 1 + >> util/qemu-fd-exchange.c | 97 ++++++++++++++++++++++++++++++++++++++++++++ >> 3 files changed, 123 insertions(+), 0 deletions(-) >> create mode 100644 include/qemu/fd-exchange.h >> create mode 100644 util/qemu-fd-exchange.c >> >> diff --git a/include/qemu/fd-exchange.h b/include/qemu/fd-exchange.h >> new file mode 100644 >> index 0000000..6929026 >> --- /dev/null >> +++ b/include/qemu/fd-exchange.h >> @@ -0,0 +1,25 @@ >> +/* >> + * Internel common methods for exchange of FD >> + * >> + * This work is licensed under the terms of the GNU GPL, version 2. See >> + * the COPYING file in the top-level directory. > Any reason you can't use GPLv2+? Limiting to exactly version 2 means > your file cannot be copied into programs that want a wider array of > licensing optoins. Er... it's my miss copy, apologize to this. :( > -- Lei