From: Cindy Lu <lulu@redhat.com>
To: lulu@redhat.com, jasowang@redhat.com, mst@redhat.com,
xieyongji@bytedance.com, linux-kernel@vger.kernel.org,
maxime.coquelin@redhat.com
Subject: [PATCH v3 1/7] vdpa: Move struct vdpa_vq_state to uAPI
Date: Tue, 5 Dec 2023 16:34:38 +0800 [thread overview]
Message-ID: <20231205083444.3029239-2-lulu@redhat.com> (raw)
In-Reply-To: <20231205083444.3029239-1-lulu@redhat.com>
Move struct vdpa_vq_state to uAPI for vduse reconnect.
Userspace and kernel will use this structure to synchronize the vq status
Signed-off-by: Cindy Lu <lulu@redhat.com>
---
include/linux/vdpa.h | 29 +----------------------------
include/uapi/linux/vdpa.h | 31 +++++++++++++++++++++++++++++++
2 files changed, 32 insertions(+), 28 deletions(-)
diff --git a/include/linux/vdpa.h b/include/linux/vdpa.h
index 43f59ef10cc9..62ce97bce934 100644
--- a/include/linux/vdpa.h
+++ b/include/linux/vdpa.h
@@ -8,6 +8,7 @@
#include <linux/vhost_iotlb.h>
#include <linux/virtio_net.h>
#include <linux/if_ether.h>
+#include <uapi/linux/vdpa.h>
/**
* struct vdpa_calllback - vDPA callback definition.
@@ -29,34 +30,6 @@ struct vdpa_notification_area {
resource_size_t size;
};
-/**
- * struct vdpa_vq_state_split - vDPA split virtqueue state
- * @avail_index: available index
- */
-struct vdpa_vq_state_split {
- u16 avail_index;
-};
-
-/**
- * struct vdpa_vq_state_packed - vDPA packed virtqueue state
- * @last_avail_counter: last driver ring wrap counter observed by device
- * @last_avail_idx: device available index
- * @last_used_counter: device ring wrap counter
- * @last_used_idx: used index
- */
-struct vdpa_vq_state_packed {
- u16 last_avail_counter:1;
- u16 last_avail_idx:15;
- u16 last_used_counter:1;
- u16 last_used_idx:15;
-};
-
-struct vdpa_vq_state {
- union {
- struct vdpa_vq_state_split split;
- struct vdpa_vq_state_packed packed;
- };
-};
struct vdpa_mgmt_dev;
diff --git a/include/uapi/linux/vdpa.h b/include/uapi/linux/vdpa.h
index 54b649ab0f22..f4bc3589685e 100644
--- a/include/uapi/linux/vdpa.h
+++ b/include/uapi/linux/vdpa.h
@@ -7,6 +7,8 @@
#ifndef _UAPI_LINUX_VDPA_H_
#define _UAPI_LINUX_VDPA_H_
+#include <linux/types.h>
+
#define VDPA_GENL_NAME "vdpa"
#define VDPA_GENL_VERSION 0x1
@@ -60,4 +62,33 @@ enum vdpa_attr {
VDPA_ATTR_MAX,
};
+/**
+ * struct vdpa_vq_state_split - vDPA split virtqueue state
+ * @avail_index: available index
+ */
+struct vdpa_vq_state_split {
+ __u16 avail_index;
+};
+
+/**
+ * struct vdpa_vq_state_packed - vDPA packed virtqueue state
+ * @last_avail_counter: last driver ring wrap counter observed by device
+ * @last_avail_idx: device available index
+ * @last_used_counter: device ring wrap counter
+ * @last_used_idx: used index
+ */
+struct vdpa_vq_state_packed {
+ __u16 last_avail_counter : 1;
+ __u16 last_avail_idx : 15;
+ __u16 last_used_counter : 1;
+ __u16 last_used_idx : 15;
+};
+
+struct vdpa_vq_state {
+ union {
+ struct vdpa_vq_state_split split;
+ struct vdpa_vq_state_packed packed;
+ };
+};
+
#endif
--
2.34.3
next prev parent reply other threads:[~2023-12-05 8:35 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-05 8:34 [PATCH v3 0/7] vduse: Add support for reconnection Cindy Lu
2023-12-05 8:34 ` Cindy Lu [this message]
2023-12-05 8:34 ` [PATCH v3 2/7] vduse: Add new uAPI for vduse reconnection Cindy Lu
2023-12-07 8:46 ` Jason Wang
2023-12-05 8:34 ` [PATCH v3 3/7] vduse: Add new ioctl VDUSE_DEV_GET_CONFIG Cindy Lu
2023-12-05 8:34 ` [PATCH v3 4/7] vduse: Add function to get/free the pages for reconnection Cindy Lu
2023-12-07 8:46 ` Jason Wang
2023-12-05 8:34 ` [PATCH v3 5/7] vduse: Add file operation for mmap Cindy Lu
2023-12-07 8:46 ` Jason Wang
2023-12-05 8:34 ` [PATCH v3 6/7] vduse: Update the vq_info in ioctl VDUSE_VQ_GET_INFO Cindy Lu
2023-12-07 8:46 ` Jason Wang
2023-12-05 8:34 ` [PATCH v3 7/7] Documentation: Add reconnect process for VDUSE Cindy Lu
2023-12-07 8:46 ` Jason Wang
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=20231205083444.3029239-2-lulu@redhat.com \
--to=lulu@redhat.com \
--cc=jasowang@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=maxime.coquelin@redhat.com \
--cc=mst@redhat.com \
--cc=xieyongji@bytedance.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
all inboxes | Powered by JetHome®