event/sw: perform partial burst enqueues
authorGage Eads <gage.eads@intel.com>
Mon, 12 Mar 2018 14:55:22 +0000 (09:55 -0500)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 16 Apr 2018 08:09:53 +0000 (10:09 +0200)
commit4deeb214ac0b33c61ebc1722ef31510f8e9492e6
treecfed5c36e174ce32932ee67091e3ccc7d7a44f2d
parente4dff5503a80e60e1e1a4b115b258aeaf791b01c
event/sw: perform partial burst enqueues

Previously, the sw PMD would enqueue either all or no events, depending on
if enough inflight credits were available for the new events in the burst.
If a port is enqueueing a large burst (i.e. a multiple of the credit update
quanta), this can result in suboptimal performance, and requires an
understanding of the sw PMD implementation (in particular, its credit
scheme) to tune an application's burst size.

This affects software that enqueues large bursts of new events, such as the
ethernet event adapter which uses a 128-deep event buffer, when the input
packet rate is sufficiently high.

This change makes the sw PMD enqueue as many events as it has credits, if
there are any new events in the burst.

Signed-off-by: Gage Eads <gage.eads@intel.com>
Acked-by: Harry van Haaren <harry.van.haaren@intel.com>
drivers/event/sw/sw_evdev_worker.c