From b24fb48886045c203aed6477000cb782548c2de0 Mon Sep 17 00:00:00 2001 From: Zhihong Wang Date: Fri, 14 Oct 2016 17:34:32 +0800 Subject: [PATCH] vhost: remove useless volatile last_used_idx is a local var, there is no need to decorate it by "volatile". Signed-off-by: Zhihong Wang Reviewed-by: Jianbo Liu Tested-by: Maxime Coquelin --- lib/librte_vhost/vhost.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_vhost/vhost.h b/lib/librte_vhost/vhost.h index 53dbf33cb0..17c557f0ae 100644 --- a/lib/librte_vhost/vhost.h +++ b/lib/librte_vhost/vhost.h @@ -85,7 +85,7 @@ struct vhost_virtqueue { uint32_t size; uint16_t last_avail_idx; - volatile uint16_t last_used_idx; + uint16_t last_used_idx; #define VIRTIO_INVALID_EVENTFD (-1) #define VIRTIO_UNINITIALIZED_EVENTFD (-2) -- 2.20.1