From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v3 07/25] app/testpmd: add flow command Date: Tue, 20 Dec 2016 16:13:41 +0000 Message-ID: <794b85ee-60a9-93e7-ad77-d47489bbc9a3@intel.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit To: Adrien Mazarguil , dev@dpdk.org 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) In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 <...>