diff options
author | 2024-05-31 15:22:05 +0000 | |
---|---|---|
committer | 2024-06-03 13:59:48 +0000 | |
commit | 9982da4e9ee4f920c51af694ca813a69979e58e8 (patch) | |
tree | 745e501a8ee65e8e871b2e055c62c295ca2d507a /virtio_loopback.h | |
parent | c6ee7a5bec9cfc7b5e0c6bb064d2e4d195b60557 (diff) |
New adapter version: code refactoringsalmon_18.90.0salmon/18.90.018.90.0
Small code refactoring and optimizations
v2: with copyright fixes
Bug-AGL: SPEC-4834
Change-Id: Icaee8121f367b21bbdb874a3bc5fc327c5a1ded1
Signed-off-by: Michele Paolino <m.paolino@virtualopensystems.com>
Diffstat (limited to 'virtio_loopback.h')
-rw-r--r-- | virtio_loopback.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 |