diff options
author | Yishai Hadas <yishaih@nvidia.com> | 2024-11-13 12:51:55 +0100 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2024-11-13 23:25:41 +0100 |
commit | 704806ca400e5daa86c110f14bfdda9d28203bb7 (patch) | |
tree | bff0fc30c0c9dab1e8bb17d1037a7ea00e9140ad /drivers/virtio | |
parent | virtio_pci: Introduce device parts access commands (diff) | |
download | linux-704806ca400e5daa86c110f14bfdda9d28203bb7.tar.xz linux-704806ca400e5daa86c110f14bfdda9d28203bb7.zip |
virtio: Extend the admin command to include the result size
Extend the admin command by incorporating a result size field.
This allows higher layers to determine the actual result size from the
backend when this information is not included in the result_sg.
The additional information introduced here will be used in subsequent
patches of this series.
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Yishai Hadas <yishaih@nvidia.com>
Link: https://lore.kernel.org/r/20241113115200.209269-3-yishaih@nvidia.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/virtio')
-rw-r--r-- | drivers/virtio/virtio_pci_modern.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/virtio/virtio_pci_modern.c b/drivers/virtio/virtio_pci_modern.c index 9193c30d640a..487d04610ecb 100644 --- a/drivers/virtio/virtio_pci_modern.c +++ b/drivers/virtio/virtio_pci_modern.c @@ -64,8 +64,10 @@ void vp_modern_avq_done(struct virtqueue *vq) spin_lock_irqsave(&admin_vq->lock, flags); do { virtqueue_disable_cb(vq); - while ((cmd = virtqueue_get_buf(vq, &len))) + while ((cmd = virtqueue_get_buf(vq, &len))) { + cmd->result_sg_size = len; complete(&cmd->completion); + } } while (!virtqueue_enable_cb(vq)); spin_unlock_irqrestore(&admin_vq->lock, flags); } |