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 v4 1/5] vduse: Add new ioctl VDUSE_DEV_GET_CONFIG
Date: Wed, 7 Feb 2024 13:43:28 +0800 [thread overview]
Message-ID: <20240207054701.616094-2-lulu@redhat.com> (raw)
In-Reply-To: <20240207054701.616094-1-lulu@redhat.com>
The ioctl VDUSE_DEV_GET_CONFIG is used by the Userspace App
to get the device configuration space.
Signed-off-by: Cindy Lu <lulu@redhat.com>
---
drivers/vdpa/vdpa_user/vduse_dev.c | 21 +++++++++++++++++++++
include/uapi/linux/vduse.h | 3 +++
2 files changed, 24 insertions(+)
diff --git a/drivers/vdpa/vdpa_user/vduse_dev.c b/drivers/vdpa/vdpa_user/vduse_dev.c
index 1c1d71d69026..ab246da27616 100644
--- a/drivers/vdpa/vdpa_user/vduse_dev.c
+++ b/drivers/vdpa/vdpa_user/vduse_dev.c
@@ -1368,6 +1368,27 @@ static long vduse_dev_ioctl(struct file *file, unsigned int cmd,
ret = 0;
break;
}
+ case VDUSE_DEV_GET_CONFIG: {
+ struct vduse_config_data config;
+ unsigned long size = offsetof(struct vduse_config_data, buffer);
+
+ ret = -EFAULT;
+ if (copy_from_user(&config, argp, size))
+ break;
+
+ ret = -EINVAL;
+ if (config.offset > dev->config_size || config.length == 0 ||
+ config.length > dev->config_size - config.offset)
+ break;
+
+ if (copy_to_user(argp + size, dev->config + config.offset,
+ config.length)) {
+ ret = -EFAULT;
+ break;
+ }
+ ret = 0;
+ break;
+ }
default:
ret = -ENOIOCTLCMD;
break;
diff --git a/include/uapi/linux/vduse.h b/include/uapi/linux/vduse.h
index 11bd48c72c6c..125d7529d91b 100644
--- a/include/uapi/linux/vduse.h
+++ b/include/uapi/linux/vduse.h
@@ -350,4 +350,7 @@ struct vduse_dev_response {
};
};
+/* get device configuration space */
+#define VDUSE_DEV_GET_CONFIG _IOR(VDUSE_BASE, 0x1b, struct vduse_config_data)
+
#endif /* _UAPI_VDUSE_H_ */
--
2.43.0
next prev parent reply other threads:[~2024-02-07 5:47 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-07 5:43 [PATCH v4 0/5] vduse: Add support for reconnection Cindy Lu
2024-02-07 5:43 ` Cindy Lu [this message]
2024-02-07 5:43 ` [PATCH v4 2/5] vduse: Add new ioctl VDUSE_DEV_GET_STATUS Cindy Lu
2024-02-07 5:43 ` [PATCH v4 3/5] vduse: Add function to get/free the pages for reconnection Cindy Lu
2024-02-07 5:43 ` [PATCH v4 4/5] vduse: Add file operation for mmap Cindy Lu
2024-03-08 6:07 ` Jason Wang
2024-03-08 7:27 ` Cindy Lu
2024-02-07 5:43 ` [PATCH v4 5/5] Documentation: Add reconnect process for VDUSE Cindy Lu
2024-03-04 5:11 ` Jason Wang
2024-03-05 7:50 ` Cindy Lu
2024-03-07 7:58 ` Michael S. Tsirkin
2024-02-22 19:18 ` [PATCH v4 0/5] vduse: Add support for reconnection Michael S. Tsirkin
2024-03-08 7:29 ` Cindy Lu
2024-03-19 6:37 ` Michael S. Tsirkin
2024-03-20 5:47 ` Cindy Lu
2024-03-08 6:07 ` Jason Wang
2024-03-08 7:26 ` Cindy Lu
2024-03-08 8:16 ` 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=20240207054701.616094-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