virtio_ring: make vring_create_virtqueue_split prettier
authorDeming Wang <wangdeming@inspur.com>
Wed, 22 Jun 2022 19:23:06 +0000 (15:23 -0400)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 27 Jun 2022 12:05:35 +0000 (08:05 -0400)
Add some spaces to vring_alloc_queue(make it look prettier).

Signed-off-by: Deming Wang <wangdeming@inspur.com>
Message-Id: <20220622192306.4371-1-wangdeming@inspur.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/virtio/virtio_ring.c

index 96731cdef422a23227b469e9d4d5eeff2b152a87..643ca779fcc6354ece2c1d473bf5dbbd81ae97db 100644 (file)
@@ -935,7 +935,7 @@ static struct virtqueue *vring_create_virtqueue_split(
        for (; num && vring_size(num, vring_align) > PAGE_SIZE; num /= 2) {
                queue = vring_alloc_queue(vdev, vring_size(num, vring_align),
                                          &dma_addr,
-                                         GFP_KERNEL|__GFP_NOWARN|__GFP_ZERO);
+                                         GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO);
                if (queue)
                        break;
                if (!may_reduce_num)