[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 02/15] virtio: redefine structure & memory cache
From: |
wexu |
Subject: |
[Qemu-devel] [PATCH v2 02/15] virtio: redefine structure & memory cache for packed ring |
Date: |
Wed, 16 Jan 2019 13:31:07 -0500 |
From: Wei Xu <address@hidden>
Redefine packed ring structure according to Qemu nomenclature,
field data(wrap counter, etc) are introduced also.
Signed-off-by: Wei Xu <address@hidden>
---
hw/virtio/virtio.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
index 22bd1ac..827e745 100644
--- a/hw/virtio/virtio.c
+++ b/hw/virtio/virtio.c
@@ -39,6 +39,13 @@ typedef struct VRingDesc
uint16_t next;
} VRingDesc;
+typedef struct VRingPackedDesc {
+ uint64_t addr;
+ uint32_t len;
+ uint16_t id;
+ uint16_t flags;
+} VRingPackedDesc;
+
typedef struct VRingAvail
{
uint16_t flags;
@@ -77,6 +84,11 @@ typedef struct VRing
VRingMemoryRegionCaches *caches;
} VRing;
+typedef struct VRingPackedDescEvent {
+ uint16_t off_wrap;
+ uint16_t flags;
+} VRingPackedDescEvent ;
+
struct VirtQueue
{
VRing vring;
@@ -87,7 +99,11 @@ struct VirtQueue
/* Last avail_idx read from VQ. */
uint16_t shadow_avail_idx;
+ bool event_wrap_counter;
+ bool avail_wrap_counter;
+
uint16_t used_idx;
+ bool used_wrap_counter;
/* Last used index value we have signalled on */
uint16_t signalled_used;
--
1.8.3.1
- [Qemu-devel] [PATCH v2 00/15] packed ring virtio-net backends support, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 01/15] virtio: introduce packed ring definitions, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 02/15] virtio: redefine structure & memory cache for packed ring,
wexu <=
- [Qemu-devel] [PATCH v2 03/15] virtio: expand offset calculation for packed ring, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 05/15] virtio: init wrap counter for packed ring, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 04/15] virtio: add memory region init for packed ring, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 06/15] virtio: init and desc empty check for packed ring, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 08/15] virtio: fill/flush/pop for packed ring, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 10/15] virtio-net: fill head desc after done all in a chain, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 12/15] virtio: add vhost-net migration for packed ring, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 07/15] virtio: get avail bytes check for packed ring, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 13/15] virtio: packed ring feature bit for userspace backend, wexu, 2019/01/16
- [Qemu-devel] [PATCH v2 09/15] virtio: event suppression support for packed ring, wexu, 2019/01/16