diff options
author | Arnd Bergmann <arnd@arndb.de> | 2019-03-06 14:05:49 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-03-09 02:17:03 +0300 |
commit | 81bf7bbeabd241326f4edc97f4f5ba366f21cbe0 (patch) | |
tree | 718a0af2c130a4e8676ca569872f19ca98e632fc /net | |
parent | 4c404ce23358d5d8fbdeb7a6021a9b33d3c3c167 (diff) | |
download | linux-81bf7bbeabd241326f4edc97f4f5ba366f21cbe0.tar.xz |
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>
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
0 files changed, 0 insertions, 0 deletions