scsi: virtio: Reduce BUG if total_sg > virtqueue size to WARN.
authorRichard W.M. Jones <rjones@redhat.com>
Thu, 10 Aug 2017 16:56:51 +0000 (17:56 +0100)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 25 Aug 2017 02:28:51 +0000 (22:28 -0400)
If using indirect descriptors, you can make the total_sg as large as you
want.  If not, BUG is too serious because the function later returns
-ENOSPC.

Signed-off-by: Richard W.M. Jones <rjones@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/virtio/virtio_ring.c

index 5e1b548..27cbc1e 100644 (file)
@@ -296,7 +296,6 @@ static inline int virtqueue_add(struct virtqueue *_vq,
        }
 #endif
 
-       BUG_ON(total_sg > vq->vring.num);
        BUG_ON(total_sg == 0);
 
        head = vq->free_head;
@@ -305,8 +304,10 @@ static inline int virtqueue_add(struct virtqueue *_vq,
         * buffers, then go indirect. FIXME: tune this threshold */
        if (vq->indirect && total_sg > 1 && vq->vq.num_free)
                desc = alloc_indirect(_vq, total_sg, gfp);
-       else
+       else {
                desc = NULL;
+               WARN_ON_ONCE(total_sg > vq->vring.num && !vq->indirect);
+       }
 
        if (desc) {
                /* Use a single buffer which doesn't continue */