From: Jason Wang <jasowang@redhat.com>
To: mst@redhat.com
Cc: yang.zhong@intel.com, tiwei.bie@intel.com,
Jason Wang <jasowang@redhat.com>,
qemu-devel@nongnu.org, maxime.coquelin@redhat.com,
Wei Xu <wexu@redhat.com>,
jfreimann@redhat.com, weiyshay@gmail.com
Subject: [Qemu-devel] [PATCH V5 1/6] virtio: basic structure for packed ring
Date: Fri, 2 Aug 2019 00:06:01 -0400 [thread overview]
Message-ID: <20190802040606.22573-2-jasowang@redhat.com> (raw)
In-Reply-To: <20190802040606.22573-1-jasowang@redhat.com>
From: Wei Xu <wexu@redhat.com>
Define packed ring structure according to Qemu nomenclature,
field data(wrap counter, etc) are also included.
Signed-off-by: Wei Xu <wexu@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
hw/virtio/virtio.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
index a94ea18a9c..981738fa19 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,17 +84,25 @@ typedef struct VRing
VRingMemoryRegionCaches *caches;
} VRing;
+typedef struct VRingPackedDescEvent {
+ uint16_t off_wrap;
+ uint16_t flags;
+} VRingPackedDescEvent ;
+
struct VirtQueue
{
VRing vring;
/* Next head to pop */
uint16_t last_avail_idx;
+ bool last_avail_wrap_counter;
/* Last avail_idx read from VQ. */
uint16_t shadow_avail_idx;
+ bool shadow_avail_wrap_counter;
uint16_t used_idx;
+ bool used_wrap_counter;
/* Last used index value we have signalled on */
uint16_t signalled_used;
--
2.18.1
next prev parent reply other threads:[~2019-08-02 4:07 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-02 4:06 [Qemu-devel] [PATCH V5 0/6] Packed virtqueue for virtrio Jason Wang
2019-08-02 4:06 ` Jason Wang [this message]
2019-08-02 9:01 ` [Qemu-devel] [PATCH V5 1/6] virtio: basic structure for packed ring Jens Freimann
2019-08-02 4:06 ` [Qemu-devel] [PATCH V5 2/6] virtio: device/driverr area size calculation refactor for split ring Jason Wang
2019-08-02 9:03 ` Jens Freimann
2019-08-02 9:43 ` Jason Wang
2019-08-02 4:06 ` [Qemu-devel] [PATCH V5 3/6] virtio: basic packed virtqueue support Jason Wang
2019-08-02 4:06 ` [Qemu-devel] [PATCH V5 4/6] virtio: event suppression support for packed ring Jason Wang
2019-08-02 4:06 ` [Qemu-devel] [PATCH V5 5/6] vhost_net: enable packed ring support Jason Wang
2019-08-02 9:03 ` Jens Freimann
2019-08-02 4:06 ` [Qemu-devel] [PATCH V5 6/6] virtio: add property to enable packed virtqueue Jason Wang
2019-08-02 9:04 ` Jens Freimann
2019-08-02 4:43 ` [Qemu-devel] [PATCH V5 0/6] Packed virtqueue for virtrio no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190802040606.22573-2-jasowang@redhat.com \
--to=jasowang@redhat.com \
--cc=jfreimann@redhat.com \
--cc=maxime.coquelin@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=tiwei.bie@intel.com \
--cc=weiyshay@gmail.com \
--cc=wexu@redhat.com \
--cc=yang.zhong@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).