From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f180.google.com (mail-wi0-f180.google.com [209.85.212.180]) by dpdk.org (Postfix) with ESMTP id 781278DA0 for ; Mon, 17 Aug 2015 10:40:16 +0200 (CEST) Received: by wicne3 with SMTP id ne3so64671172wic.0 for ; Mon, 17 Aug 2015 01:40:16 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:to:references:cc:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=3tlPYNg1Z9sildsjkUqFWz8lun1MuotsMiSCiEpMshk=; b=NzVNKJXi7S0hlC4o8ZHPWOR2DkHCsR0R42/1Eu4xqUoyxszUmWiCzjfLdC3KRl2VKA +DUOPuhfpyI5Uy06Hq2Y6441pnNMeRsp2/JBeHGYy3Ch3FP6Bn7S4ZRWADkS7KbCWtkj ZU7pypEbohArYo21jm66iQ9uB5VVOCAYDP3XngnYnFEh3UbZOsFpTjP/QsXIkHV+QOcp WgAGWJxSoP/S9kAh+VBQGK5htW6SFIgUZhSBPjLkNR4+rRfMBQ9mSZ2UGdTTJnPz1tQN 7xF9z5wIVLNiecg9GyVysc3RIP0VxcijQvvgy4h9/9jpdI3QCSB2GMvGtg9eZGvmvnIr F5RA== X-Gm-Message-State: ALoCoQnEqQrKwCbiy4LL4HRx8LHjNV42tzL+qJiVavlu83CKJrjg5Iw/SpX3wJhu11RHSiuvLOE3 X-Received: by 10.194.87.4 with SMTP id t4mr616323wjz.84.1439800816255; Mon, 17 Aug 2015 01:40:16 -0700 (PDT) Received: from avi.cloudius ([37.142.229.250]) by smtp.googlemail.com with ESMTPSA id hn2sm20756916wjc.45.2015.08.17.01.40.14 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 17 Aug 2015 01:40:15 -0700 (PDT) To: Olivier MATZ , thomas.monjalon@6wind.com References: <1439541199-26687-1-git-send-email-avi@cloudius-systems.com> <55D19C6F.3040501@6wind.com> From: Avi Kivity Message-ID: <55D19DEE.8060404@cloudius-systems.com> Date: Mon, 17 Aug 2015 11:40:14 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 In-Reply-To: <55D19C6F.3040501@6wind.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: "" Subject: Re: [dpdk-dev] [PATCH] mempool: fix incompatibility with C++ in header file X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Aug 2015 08:40:16 -0000 (adding list+Thomas back to cc) On 08/17/2015 11:33 AM, Olivier MATZ wrote: > Hi, > > On 08/14/2015 10:33 AM, Avi Kivity wrote: >> C++ doesn't allow implied casting from void * to another pointer, so >> supply an explicit cast. >> >> Signed-off-by: Avi Kivity > For Thomas: > This fix is already submitted in > http://dpdk.org/dev/patchwork/patch/6750/ > > > Thanks Avi