Skip to content

Commit c7cc29a

Browse files
Deming Wangmstsirkin
authored andcommitted
virtio_ring: make vring_create_virtqueue_split prettier
Add some spaces to vring_alloc_queue(make it look prettier). Signed-off-by: Deming Wang <[email protected]> Message-Id: <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]>
1 parent 037d430 commit c7cc29a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/virtio/virtio_ring.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ static struct virtqueue *vring_create_virtqueue_split(
935935
for (; num && vring_size(num, vring_align) > PAGE_SIZE; num /= 2) {
936936
queue = vring_alloc_queue(vdev, vring_size(num, vring_align),
937937
&dma_addr,
938-
GFP_KERNEL|__GFP_NOWARN|__GFP_ZERO);
938+
GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO);
939939
if (queue)
940940
break;
941941
if (!may_reduce_num)

0 commit comments

Comments
 (0)