From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id CEEA1FBB1 for ; Tue, 20 Dec 2016 17:13:43 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga105.fm.intel.com with ESMTP; 20 Dec 2016 08:13:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,379,1477983600"; d="scan'208";a="1074474181" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.29]) ([10.237.220.29]) by orsmga001.jf.intel.com with ESMTP; 20 Dec 2016 08:13:41 -0800 To: Adrien Mazarguil , dev@dpdk.org References: From: Ferruh Yigit Message-ID: <794b85ee-60a9-93e7-ad77-d47489bbc9a3@intel.com> Date: Tue, 20 Dec 2016 16:13:41 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v3 07/25] app/testpmd: add flow command 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: Tue, 20 Dec 2016 16:13:44 -0000 Hi Adrien, On 12/19/2016 5:48 PM, Adrien Mazarguil wrote: > Managing generic flow API functions from command line requires the use of > dynamic tokens for convenience as flow rules are not fixed and cannot be > defined statically. > > This commit adds specific flexible parser code and object for a new "flow" > command in separate file. > > Signed-off-by: Adrien Mazarguil > Acked-by: Olga Shern <...> > +/** Initialize context. */ > +static void > +cmd_flow_context_init(struct context *ctx) > +{ > + /* A full memset() is not necessary. */ > + ctx->curr = 0; > + ctx->prev = 0; It seems you have cleaned up all compiler warnings, including bunch of ICC e188 ones, instead of ignoring them. Thank you for your effort. These ones are only remaining ones as far as I can see: ctx->curr = ZERO; ctx->prev = ZERO; Thanks, ferruh <...>