Re: [dpdk-dev] [PATCH] eal: simplify RTE_PMD_DEBUG_TRACE

2018-12-21 Thread Ferruh Yigit
On 12/14/2018 9:20 PM, Jeff Shaw wrote: > On Fri, Dec 14, 2018 at 12:50:55PM -0800, Stephen Hemminger wrote: >> Use rte_log directly, eliminating no longer used rte_pmd_dev_trace >> function. This removes variable length array which is problem on >> Windows and other compilers not doing C99. >> >>

Re: [dpdk-dev] [PATCH] eal: simplify RTE_PMD_DEBUG_TRACE

2018-12-14 Thread Stephen Hemminger
On Fri, 14 Dec 2018 13:20:07 -0800 Jeff Shaw wrote: > On Fri, Dec 14, 2018 at 12:50:55PM -0800, Stephen Hemminger wrote: > > Use rte_log directly, eliminating no longer used rte_pmd_dev_trace > > function. This removes variable length array which is problem on > > Windows and other compilers not

Re: [dpdk-dev] [PATCH] eal: simplify RTE_PMD_DEBUG_TRACE

2018-12-14 Thread Jeff Shaw
On Fri, Dec 14, 2018 at 12:50:55PM -0800, Stephen Hemminger wrote: > Use rte_log directly, eliminating no longer used rte_pmd_dev_trace > function. This removes variable length array which is problem on > Windows and other compilers not doing C99. > > Also, drop unused RTE_PROC_PRIMARY macros. >