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 <adrien.mazarg...@6wind.com> > Acked-by: Olga Shern <ol...@mellanox.com>
<...> > +/** 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 <...>