Spdk/lib/event
Daniel Verkamp 921bf34289 event: replace poller rte_ring with TAILQ
The rte_ring used for pollers is already single-producer and
single-consumer, so it is not providing any thread safety guarantees.
ALl modifications to the active_pollers ring are done from the core that
is running the reactor (via events).  This means the rte_ring can be
replaced with a simpler intrusive linked list.

This simplifies the removal of pollers in the middle of the list and
avoids extra allocations for the ring.

Change-Id: Ica149b7a1668a8af1e6ca8f741c48f2217f6f9bf
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
2016-08-01 12:40:34 -07:00
..
rpc build: include spdk.common.mk in lib Makefiles 2016-07-18 16:17:40 -07:00
app.c trace: hard-code lcore history array size 2016-07-22 12:50:44 -07:00
dpdk_init.c event: Add dpdk framework start function into event. 2016-07-01 10:07:42 -07:00
Makefile build: include spdk.common.mk in lib Makefiles 2016-07-18 16:17:40 -07:00
reactor.c event: replace poller rte_ring with TAILQ 2016-08-01 12:40:34 -07:00
reactor.h event: Remove the concept of subsystem from the reactor. 2016-06-08 09:13:02 -07:00
subsystem.c event: fix null pointer issue in spdk_subsystem_fini 2016-06-15 16:33:55 -07:00
subsystem.h Add event-driven application framework 2016-05-31 09:58:05 -07:00