event/sw: fix credit return on invalid queue id
authorHarry van Haaren <harry.van.haaren@intel.com>
Tue, 18 Apr 2017 09:58:40 +0000 (10:58 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 19 Apr 2017 22:26:55 +0000 (00:26 +0200)
commit95a896ab861652035920f23ab784cc6f9a7aa521
tree15705a1b9125577129420b79c04ac5af93aa8db3
parent7904c82a787cef322907850325b3b2c8b9dbe1c1
event/sw: fix credit return on invalid queue id

This patch returns a credit when an rte_event is
enqueued with an invalid queue_id. Previously a
credit was leaked from the system.

Note that the eventdev instance does not attempt
to free any resources that the rte_event owns. As
a result, resources owned by the rte_event are leaked.
Eg. if the rte_event represents an rte_mbuf, the mbuf
will not be freed, and causes a leak from the mempool.

Fixes: 656af9180014 ("event/sw: add worker core functions")

Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com>
Acked-by: David Hunt <david.hunt@intel.com>
drivers/event/sw/sw_evdev_worker.c