Re: [dpdk-dev] [PATCH v4 1/2] eal: add WC store functions

2020-07-06 Thread Nicolau, Radu
Hi David, thanks for reviewing! Some comments inline. On 7/3/2020 4:19 PM, David Marchand wrote: On Thu, Jul 2, 2020 at 11:24 AM Radu Nicolau wrote: +static inline void +rte_write32_wc(uint32_t value, volatile void *addr); This is a new API, and even if inlined, it should be marked experime

Re: [dpdk-dev] [PATCH v4 1/2] eal: add WC store functions

2020-07-03 Thread David Marchand
On Thu, Jul 2, 2020 at 11:24 AM Radu Nicolau wrote: > > Add rte_write32_wc and rte_write32_wc_relaxed functions > that implement 32bit stores using write combining memory protocol. > Provided generic stubs and x86 implementation. > > Signed-off-by: Radu Nicolau > Acked-by: Bruce Richardson > ---