virtio_ring: fix return code on DMA mapping fails
authorHalil Pasic <pasic@linux.ibm.com>
Thu, 14 Nov 2019 12:46:46 +0000 (13:46 +0100)
committerMichael S. Tsirkin <mst@redhat.com>
Tue, 19 Nov 2019 10:13:49 +0000 (05:13 -0500)
Commit 780bc7903a32 ("virtio_ring: Support DMA APIs")  makes
virtqueue_add() return -EIO when we fail to map our I/O buffers. This is
a very realistic scenario for guests with encrypted memory, as swiotlb
may run out of space, depending on it's size and the I/O load.

The virtio-blk driver interprets -EIO form virtqueue_add() as an IO
error, despite the fact that swiotlb full is in absence of bugs a
recoverable condition.

Let us change the return code to -ENOMEM, and make the block layer
recover form these failures when virtio-blk encounters the condition
described above.

Cc: stable@vger.kernel.org
Fixes: 780bc7903a32 ("virtio_ring: Support DMA APIs")
Signed-off-by: Halil Pasic <pasic@linux.ibm.com>
Tested-by: Michael Mueller <mimu@linux.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/virtio/virtio_ring.c

index a8041e4..867c7eb 100644 (file)
@@ -583,7 +583,7 @@ unmap_release:
                kfree(desc);
 
        END_USE(vq);
-       return -EIO;
+       return -ENOMEM;
 }
 
 static bool virtqueue_kick_prepare_split(struct virtqueue *_vq)
@@ -1085,7 +1085,7 @@ unmap_release:
        kfree(desc);
 
        END_USE(vq);
-       return -EIO;
+       return -ENOMEM;
 }
 
 static inline int virtqueue_add_packed(struct virtqueue *_vq,