diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2022-08-16 01:36:58 -0400 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2022-08-16 01:40:24 -0400 |
commit | 9993a4f989c7ca5e227329b2878f65d05c9fc20f (patch) | |
tree | 83b4240e1a5893fe4dacd9ad77888d67fe831680 /arch | |
parent | 9e82eb574c5d90a175ae830916af8b8a1ccc31e7 (diff) | |
download | linux-stable-9993a4f989c7ca5e227329b2878f65d05c9fc20f.tar.gz linux-stable-9993a4f989c7ca5e227329b2878f65d05c9fc20f.tar.bz2 linux-stable-9993a4f989c7ca5e227329b2878f65d05c9fc20f.zip |
virtio: Revert "virtio: find_vqs() add arg sizes"
This reverts commit a10fba0377145fccefea4dc4dd5915b7ed87e546: the
proposed API isn't supported on all transports but no
effort was made to address this.
It might not be hard to fix if we want to: maybe just
rename size to size_hint and make sure legacy
transports ignore the hint.
But it's not sure what the benefit is in any case, so
let's drop it.
Fixes: a10fba037714 ("virtio: find_vqs() add arg sizes")
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20220816053602.173815-8-mst@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/um/drivers/virtio_uml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/virtio_uml.c b/arch/um/drivers/virtio_uml.c index 79e38afd4b91..e719af8bdf56 100644 --- a/arch/um/drivers/virtio_uml.c +++ b/arch/um/drivers/virtio_uml.c @@ -1011,7 +1011,7 @@ error_kzalloc: static int vu_find_vqs(struct virtio_device *vdev, unsigned nvqs, struct virtqueue *vqs[], vq_callback_t *callbacks[], - const char * const names[], u32 sizes[], const bool *ctx, + const char * const names[], const bool *ctx, struct irq_affinity *desc) { struct virtio_uml_device *vu_dev = to_virtio_uml_device(vdev); |