virtio-balloon: correct used length
commitd3f1f940ebe43403feb1d12e4b5b9236aba50cb9
authorJason Wang <jasowang@redhat.com>
Mon, 29 Nov 2021 03:08:41 +0000 (29 11:08 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 29 Nov 2021 13:49:36 +0000 (29 08:49 -0500)
treebb7477a41060ad923444a1ab5461040581ab7965
parent0fe7245d8b938f371556c100b0b6ec1d2b41e584
virtio-balloon: correct used length

Spec said:

"and len the total of bytes written into the buffer."

For inflateq, deflateq and statsq, we don't process in_sg so the used
length should be zero. For free_page_vq, tough the pages could be
changed by the device (in the destination), spec said:

"Note: len is particularly useful for drivers using untrusted buffers:
if a driver does not know exactly how much has been written by the
device, the driver would have to zero the buffer in advance to ensure
no data leakage occurs."

So 0 should be used as well here.

Signed-off-by: Jason Wang <jasowang@redhat.com>
Message-Id: <20211129030841.3611-2-jasowang@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
hw/virtio/virtio-balloon.c