From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 442DC374C for ; Fri, 4 Aug 2017 15:37:51 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga105.jf.intel.com with ESMTP; 04 Aug 2017 06:37:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,321,1498546800"; d="scan'208";a="886442094" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by FMSMGA003.fm.intel.com with ESMTP; 04 Aug 2017 06:37:50 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.133]) by IRSMSX101.ger.corp.intel.com ([163.33.3.153]) with mapi id 14.03.0319.002; Fri, 4 Aug 2017 14:37:49 +0100 From: "Dumitrescu, Cristian" To: Adrien Mazarguil , Thomas Monjalon CC: "dev@dpdk.org" Thread-Topic: [PATCH 1/2] ethdev: fix C11 extensions in exported header Thread-Index: AQHTDRi8AovcOK6VXkmfSSCuNpKcRKJ0MzGQ Date: Fri, 4 Aug 2017 13:37:49 +0000 Message-ID: <3EB4FA525960D640B5BDFFD6A3D891267BA8A7C0@IRSMSX108.ger.corp.intel.com> References: <55d8f7ef02866b9ab921656e9e9e4a43d09f3c50.1501847638.git.adrien.mazarguil@6wind.com> In-Reply-To: <55d8f7ef02866b9ab921656e9e9e4a43d09f3c50.1501847638.git.adrien.mazarguil@6wind.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 1/2] ethdev: fix C11 extensions in exported header X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2017 13:37:52 -0000 > -----Original Message----- > From: Adrien Mazarguil [mailto:adrien.mazarguil@6wind.com] > Sent: Friday, August 4, 2017 12:56 PM > To: Thomas Monjalon > Cc: dev@dpdk.org; Dumitrescu, Cristian > Subject: [PATCH 1/2] ethdev: fix C11 extensions in exported header >=20 > Fix issues reported by check-includes.sh: >=20 > rte_tm.h:473:2: error: anonymous unions are a C11 extension > [-Werror,-Wc11-extensions] > rte_tm.h:696:2: error: anonymous unions are a C11 extension > [-Werror,-Wc11-extensions] > rte_tm.h:904:2: error: anonymous unions are a C11 extension > [-Werror,-Wc11-extensions] >=20 > Fixes: 5d109deffa87 ("ethdev: add traffic management API") > Cc: Cristian Dumitrescu >=20 > Signed-off-by: Adrien Mazarguil > --- Acked-by: Cristian Dumitrescu