Re: [dpdk-dev] [PATCH 03/10] net/virtio: add missing barrier in interrupt enable

2019-03-19 Thread Maxime Coquelin
On 3/19/19 7:43 AM, Tiwei Bie wrote: Typically, after enabling Rx interrupt, a check should be done to make sure that there is no new incoming packets before going to sleep. So a barrier is needed to make sure that any following check won't happen before the interrupt is actually enabled. Fix

[dpdk-dev] [PATCH 03/10] net/virtio: add missing barrier in interrupt enable

2019-03-18 Thread Tiwei Bie
Typically, after enabling Rx interrupt, a check should be done to make sure that there is no new incoming packets before going to sleep. So a barrier is needed to make sure that any following check won't happen before the interrupt is actually enabled. Fixes: c056be239db5 ("net/virtio: add Rx inte