]> Git Repo - linux.git/commitdiff
virtio_ring: fix num_free handling in error case
authorTiwei Bie <[email protected]>
Fri, 23 Feb 2018 11:41:30 +0000 (19:41 +0800)
committerMichael S. Tsirkin <[email protected]>
Thu, 1 Mar 2018 16:53:38 +0000 (18:53 +0200)
The vq->vq.num_free hasn't been changed when error happens,
so it shouldn't be changed when handling the error.

Fixes: 780bc7903a32 ("virtio_ring: Support DMA APIs")
Cc: Andy Lutomirski <[email protected]>
Cc: Michael S. Tsirkin <[email protected]>
Cc: [email protected]
Signed-off-by: Tiwei Bie <[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
drivers/virtio/virtio_ring.c

index eb30f3e09a4775b3f046ccc698f18a05210f17ad..71458f493cf864aa260e493c0ef5ddc4d6c78274 100644 (file)
@@ -428,8 +428,6 @@ unmap_release:
                i = virtio16_to_cpu(_vq->vdev, vq->vring.desc[i].next);
        }
 
-       vq->vq.num_free += total_sg;
-
        if (indirect)
                kfree(desc);
 
This page took 0.050396 seconds and 4 git commands to generate.