eventdev: fix possible use of uninitialized var
authorAndrzej Ostruszka <aostruszka@marvell.com>
Thu, 7 Nov 2019 15:03:10 +0000 (16:03 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 8 Nov 2019 14:17:24 +0000 (15:17 +0100)
commit57e20572ac67a55874a206ef7339443b0950705d
treeeab176ffc973394c499c27d7b09b24da6e53ee9c
parent098cc0fea3be3094a5f0691d1ae501c83fe0d687
eventdev: fix possible use of uninitialized var

Fix the logic for the case of event queue allowing all schedule types.

Compiler warning pointing to this error (with LTO enabled):
error: ‘sched_type’ may be used uninitialized in this function
[-Werror=maybe-uninitialized]
  if ((ret < 0 && ret != -EOVERFLOW) ||

Fixes: 6750b21bd6af ("eventdev: add default software timer adapter")
Cc: stable@dpdk.org
Signed-off-by: Andrzej Ostruszka <aostruszka@marvell.com>
Reviewed-by: Jerin Jacob <jerinj@marvell.com>
lib/librte_eventdev/rte_event_timer_adapter.c