vhost: silence an unused-variable warning
authorArnd Bergmann <arnd@arndb.de>
Wed, 6 Mar 2019 11:05:49 +0000 (12:05 +0100)
committerMichael S. Tsirkin <mst@redhat.com>
Wed, 6 Mar 2019 16:32:37 +0000 (11:32 -0500)
commitcfdbb4ed31aa777d59b288810f66eb06249ee5b7
treee96d7bb7ea9db5f57632c7652a44b4d3250e8cba
parentab7a2375fb8e83f8744c34442f476fa5a9df5e35
vhost: silence an unused-variable warning

On some architectures, the MMU can be disabled, leading to access_ok()
becoming an empty macro that does not evaluate its size argument,
which in turn produces an unused-variable warning:

drivers/vhost/vhost.c:1191:9: error: unused variable 's' [-Werror,-Wunused-variable]
        size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;

Mark the variable as __maybe_unused to shut up that warning.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/vhost/vhost.c