Re: [PATCH] net: openvswitch: pass NULL for unused parameters

2020-08-30 Thread Tom Rix
On 8/30/20 1:02 PM, Andy Shevchenko wrote: > On Sun, Aug 30, 2020 at 6:17 PM wrote: >> From: Tom Rix >> >> clang static analysis flags these problems >> >> flow_table.c:713:2: warning: The expression is an uninitialized >> value. The computed value will also be garbage >> (*n_mask_hit

Re: [PATCH] net: openvswitch: pass NULL for unused parameters

2020-08-30 Thread Andy Shevchenko
On Sun, Aug 30, 2020 at 6:17 PM wrote: > > From: Tom Rix > > clang static analysis flags these problems > > flow_table.c:713:2: warning: The expression is an uninitialized > value. The computed value will also be garbage > (*n_mask_hit)++; > ^~~ > flow_table.c:748:5:

[PATCH] net: openvswitch: pass NULL for unused parameters

2020-08-30 Thread trix
From: Tom Rix clang static analysis flags these problems flow_table.c:713:2: warning: The expression is an uninitialized value. The computed value will also be garbage (*n_mask_hit)++; ^~~ flow_table.c:748:5: warning: The expression is an uninitialized value. The