From: Mattias Rönnblom Date: Wed, 15 Apr 2020 18:15:37 +0000 (+0200) Subject: event/dsw: fix gcc 4.8 false positive warning X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=c3eb8b62744930029f96c5d64d9adac5749908ef;p=dpdk.git event/dsw: fix gcc 4.8 false positive warning Add redundant stack variable initialization to work around false-positive warnings in older versions of GCC. Fixes: 1f2b99e8d9b1 ("event/dsw: improve migration mechanism") Signed-off-by: Mattias Rönnblom --- diff --git a/drivers/event/dsw/dsw_event.c b/drivers/event/dsw/dsw_event.c index 94c8efdbcf..8323903736 100644 --- a/drivers/event/dsw/dsw_event.c +++ b/drivers/event/dsw/dsw_event.c @@ -442,10 +442,10 @@ dsw_select_emigration_target(struct dsw_evdev *dsw, uint8_t *targets_len) { int16_t source_port_load = port_loads[source_port_id]; - struct dsw_queue_flow *candidate_qf; - uint8_t candidate_port_id; + struct dsw_queue_flow *candidate_qf = NULL; + uint8_t candidate_port_id = 0; int16_t candidate_weight = -1; - int16_t candidate_flow_load; + int16_t candidate_flow_load = -1; uint16_t i; if (source_port_load < DSW_MIN_SOURCE_LOAD_FOR_MIGRATION)