[dpdk-dev] [PATCH v5 02/10] ethdev: make error checking macros public

2015-11-10 Thread Declan Doherty
On 10/11/15 15:50, Adrien Mazarguil wrote: > On Mon, Nov 09, 2015 at 08:34:11PM +, Declan Doherty wrote: >> Move the function pointer and port id checking macros to rte_ethdev and >> rte_dev header files, so that they can be used in the static inline >> functions there. Also replace the RTE_LOG

[dpdk-dev] [PATCH v5 02/10] ethdev: make error checking macros public

2015-11-10 Thread Adrien Mazarguil
On Mon, Nov 09, 2015 at 08:34:11PM +, Declan Doherty wrote: > Move the function pointer and port id checking macros to rte_ethdev and > rte_dev header files, so that they can be used in the static inline > functions there. Also replace the RTE_LOG call within > RTE_PMD_DEBUG_TRACE so this macro

[dpdk-dev] [PATCH v5 02/10] ethdev: make error checking macros public

2015-11-10 Thread Bruce Richardson
On Mon, Nov 09, 2015 at 08:34:11PM +, Declan Doherty wrote: > Move the function pointer and port id checking macros to rte_ethdev and > rte_dev header files, so that they can be used in the static inline > functions there. Also replace the RTE_LOG call within > RTE_PMD_DEBUG_TRACE so this macro

[dpdk-dev] [PATCH v5 02/10] ethdev: make error checking macros public

2015-11-09 Thread Declan Doherty
Move the function pointer and port id checking macros to rte_ethdev and rte_dev header files, so that they can be used in the static inline functions there. Also replace the RTE_LOG call within RTE_PMD_DEBUG_TRACE so this macro can be built with the -pedantic flag Signed-off-by: Declan Doherty --