[dpdk-dev] [PATCH] ethdev: call rxtx callbacks in the order they were added

2015-07-12 Thread Thomas Monjalon
> Change the order that user supplied RX and TX callbacks are called > to the order that they were added (fifo). > > The previous calling order was the reverse of this (lifo) and was > counter intuitive for users. > > Signed-off-by: John McNamara Applied, thanks

[dpdk-dev] [PATCH] ethdev: call rxtx callbacks in the order they were added

2015-07-10 Thread John McNamara
Change the order that user supplied RX and TX callbacks are called to the order that they were added (fifo). The previous calling order was the reverse of this (lifo) and was counter intuitive for users. Signed-off-by: John McNamara --- lib/librte_ether/rte_ethdev.c | 32 +++