From 9982da4e9ee4f920c51af694ca813a69979e58e8 Mon Sep 17 00:00:00 2001 From: Michele Paolino Date: Fri, 31 May 2024 15:22:05 +0000 Subject: New adapter version: code refactoring Small code refactoring and optimizations v2: with copyright fixes Bug-AGL: SPEC-4834 Change-Id: Icaee8121f367b21bbdb874a3bc5fc327c5a1ded1 Signed-off-by: Michele Paolino --- virtio_loopback.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'virtio_loopback.h') diff --git a/virtio_loopback.h b/virtio_loopback.h index 2ece0f9..c348a19 100644 --- a/virtio_loopback.h +++ b/virtio_loopback.h @@ -16,7 +16,7 @@ * * 3) vhost.h of QEMU project * - * Copyright 2022-2023 Virtual Open Systems SAS. + * Copyright 2022-2024 Virtual Open Systems SAS. * * This work is licensed under the terms of the GNU GPL, version 2. See * the COPYING file in the top-level directory. @@ -148,7 +148,7 @@ #define VIRT_VERSION_LEGACY 1 #define VIRT_VENDOR 0x554D4551 /* 'QEMU' */ -#define VIRTQUEUE_MAX_SIZE 64 +#define VIRTQUEUE_MAX_SIZE 1024 #define VIRTIO_QUEUE_MAX VIRTQUEUE_MAX_SIZE #define VIRTIO_NO_VECTOR 0xffff @@ -536,7 +536,7 @@ typedef struct VirtioDeviceClass { void (*set_config)(VirtIODevice *vdev, const uint8_t *config); void (*reset)(VirtIODevice *vdev); void (*set_status)(VirtIODevice *vdev, uint8_t val); - void (*realize)(void); + void (*realize)(int queue_num, int queue_size); void (*unrealize)(VirtIODevice *vdev); /* * For transitional devices, this is a bitmap of features -- cgit