From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 11D4495D7 for ; Fri, 23 Oct 2015 10:40:00 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP; 23 Oct 2015 01:40:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,185,1444719600"; d="scan'208";a="670158946" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by orsmga003.jf.intel.com with ESMTP; 23 Oct 2015 01:39:59 -0700 Received: from FMSMSX110.amr.corp.intel.com (10.18.116.10) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 23 Oct 2015 01:39:59 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx110.amr.corp.intel.com (10.18.116.10) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 23 Oct 2015 01:39:58 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.253]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.96]) with mapi id 14.03.0248.002; Fri, 23 Oct 2015 16:39:57 +0800 From: "Chen, Jing D" To: Stephen Hemminger Thread-Topic: [dpdk-dev] [PATCH v2 01/16] fm10k: add new vPMD file Thread-Index: AQHRDK5iSw5jVMt6eU+fXhIjA4klGJ53JZAAgAGc0PA= Date: Fri, 23 Oct 2015 08:39:56 +0000 Message-ID: <4341B239C0EFF9468EE453F9E9F4604D02AE290A@shsmsx102.ccr.corp.intel.com> References: <1443531824-22767-2-git-send-email-jing.d.chen@intel.com> <1445507104-22563-1-git-send-email-jing.d.chen@intel.com> <1445507104-22563-2-git-send-email-jing.d.chen@intel.com> <20151022085840.1d082e75@xeon-e3> In-Reply-To: <20151022085840.1d082e75@xeon-e3> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH v2 01/16] fm10k: add new vPMD 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: Fri, 23 Oct 2015 08:40:01 -0000 Hi, Stephen, Best Regards, Mark > -----Original Message----- > From: Stephen Hemminger [mailto:stephen@networkplumber.org] > Sent: Thursday, October 22, 2015 11:59 PM > To: Chen, Jing D > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 01/16] fm10k: add new vPMD file >=20 > On Thu, 22 Oct 2015 17:44:49 +0800 > "Chen Jing D(Mark)" wrote: >=20 > > +#ifndef __INTEL_COMPILER > > +#pragma GCC diagnostic ignored "-Wcast-qual" > > +#endif >=20 > Since this is new code, can't you make it work correctly > with Gcc. Rather than turning off a useful diagnostic. This macro is necessary for later SSE functions or I'll have to add some Un-necessary cast to avoid compile failure. I can add it in later patch. But it will have to show up anyway, right?=20