From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com
 [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id F05771B2A5
 for <dev@dpdk.org>; Wed,  8 Nov 2017 20:45:44 +0100 (CET)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id 686BC20E04;
 Wed,  8 Nov 2017 14:45:44 -0500 (EST)
Received: from frontend1 ([10.202.2.160])
 by compute1.internal (MEProxy); Wed, 08 Nov 2017 14:45:44 -0500
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 cc:content-transfer-encoding:content-type:date:from:in-reply-to
 :message-id:mime-version:references:subject:to:x-me-sender
 :x-me-sender:x-sasl-enc; s=mesmtp; bh=D9AxtFCPPai0vnKXPaTGv7FRjy
 OUSV4fL7ZT6Pevoac=; b=mJ9hVhf62q5bLWQ8HMKAhnSFfla3VfuJtdyd276n3S
 RNAwOaJXYFjnZh6al6I8GNmh2u4kikrXclVkiG0r/pVu9r9TEhbh342KDWlVAFtk
 TB9b7YUlhOenCmJaJjJPqj6UH69kb5JFXP1guD57UnGXcUfw2KKLr4SazOJbUrEW
 o=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=cc:content-transfer-encoding:content-type
 :date:from:in-reply-to:message-id:mime-version:references
 :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=D9AxtF
 CPPai0vnKXPaTGv7FRjyOUSV4fL7ZT6Pevoac=; b=bAuZE6lZWuNI3ZcH4hPNVD
 +v7A0ZygiVlOlovLkOXZxqGv9+6R9P4KvKbteNSt9Rz47/UFszQrW9IsZadfJQIy
 In028ALJWq1VpySVf2qmXRYkyFF0Tned0vw4GhaFN9zbbXDSZv4atJbBeM3Q0XKs
 8WXp9hNjBf4O7wdahSrQqBFRjq8C+COOlPoeE7KAL4sp93LDrL8iV1cnZp4apDUB
 aoSd74wQ3UIhWNKpZhFGmmfeirAdV+2tsOcPgIC89P9hKMZ09GRlsMzYFr0u+H/o
 9704Ls+/XAHnvha5S9IMzK9rYR6WEdeslKqfdZmXvDtvduzEVz7DOmmpIvlwaaaA
 ==
X-ME-Sender: <xms:6F4DWnBYO1PWNnrEQBRK6ki9bcaD0INODt1F4JNovuTR0sK_piNmjg>
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 2A8267E3E0;
 Wed,  8 Nov 2017 14:45:44 -0500 (EST)
From: Thomas Monjalon <thomas@monjalon.net>
To: "Singh, Jasvinder" <jasvinder.singh@intel.com>
Cc: dev@dpdk.org, "Dumitrescu, Cristian" <cristian.dumitrescu@intel.com>
Date: Wed, 08 Nov 2017 20:45:43 +0100
Message-ID: <26520232.iiPMk2TgvP@xps>
In-Reply-To: <3EB4FA525960D640B5BDFFD6A3D891267BAE145B@IRSMSX108.ger.corp.intel.com>
References: <20171108102508.155867-1-jasvinder.singh@intel.com>
 <3EB4FA525960D640B5BDFFD6A3D891267BAE145B@IRSMSX108.ger.corp.intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH] net/softnic: fix build error on gcc4.5.1
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Wed, 08 Nov 2017 19:45:45 -0000

> > Fix the build error due to improper handling of unions on SUSE11(gcc 4.5.1).
> > 
> > Fixes: 299a89de916a ("net/softnic: add TM capabilities ops")
> > 
> > DPDK/drivers/net/softnic/rte_eth_softnic_tm.c:588:3
> > error: unknown field 'nonleaf' specified in initializer compilation
> > terminated due to -Wfatal-errors.
> > 
> > Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
> > ---
> >  drivers/net/softnic/rte_eth_softnic_tm.c | 40 ++++++++++++++++-----------
> > -----
> >  1 file changed, 20 insertions(+), 20 deletions(-)
> 
> Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>

Applied, thanks