[dpdk-dev] [PATCH v5 1/2] ethdev: remove duplicated debug functions

2015-11-25 Thread Thomas Monjalon
2015-11-24 17:37, Bruce Richardson: > --- a/lib/librte_ether/Makefile > +++ b/lib/librte_ether/Makefile > @@ -41,7 +41,7 @@ CFLAGS += $(WERROR_FLAGS) > > EXPORT_MAP := rte_ether_version.map > > -LIBABIVER := 2 > +LIBABIVER := 3 This number has already been increased at the beginning of this r

[dpdk-dev] [PATCH v5 1/2] ethdev: remove duplicated debug functions

2015-11-24 Thread Bruce Richardson
The functions for rx/tx burst, for rx_queue_count and descriptor_done in the ethdev library all had two copies of the code. One copy in rte_ethdev.h was inlined for performance, while a second was in rte_ethdev.c for debugging purposes only. We can eliminate the second copy of the functions by movi