examples/ipsec-gw: fix gcc 10 maybe-uninitialized warning
authorKevin Traynor <ktraynor@redhat.com>
Wed, 11 Mar 2020 11:33:00 +0000 (11:33 +0000)
committerDavid Marchand <david.marchand@redhat.com>
Wed, 6 May 2020 09:18:36 +0000 (11:18 +0200)
commitf8afd2924753b7fbc9e28771277928ac1d6fb4a7
tree9497bd6fd7276cef16ea73facb34edf9febda7a3
parentec87d3b2c2451ce0fa71f53f64987c68a0b3423c
examples/ipsec-gw: fix gcc 10 maybe-uninitialized warning

gcc 10.0.1 reports:

../examples/ipsec-secgw/ipsec_process.c: In function ‘ipsec_process’:
../examples/ipsec-secgw/ipsec_process.c:132:34:
error: ‘grp.m’ may be used uninitialized in this function
 [-Werror=maybe-uninitialized]
  132 |    grp[n].cnt = pkts + i - grp[n].m;
      |                            ~~~~~~^~

This is a correct warning for the initial execution of the statement.
However, it is the design of the loop that grp[0].cnt will later be
written with the correct value using an initialized grp[0].m before it
is used.

In order to remove the warning, initialize grp[0].m for the initial and
unused calculation of grp[0].cnt.

Fixes: 3e5f4625dc17 ("examples/ipsec-secgw: make data-path to use IPsec library")
Cc: stable@dpdk.org
Suggested-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
examples/ipsec-secgw/ipsec_process.c