[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH V6 14/24] migration: VMSTATE_FD
From: |
Steve Sistare |
Subject: |
[PATCH V6 14/24] migration: VMSTATE_FD |
Date: |
Tue, 14 Jan 2025 09:23:44 -0800 |
Define VMSTATE_FD for declaring a file descriptor field in a
VMStateDescription.
Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
---
include/migration/vmstate.h | 9 +++++++++
migration/vmstate-types.c | 23 +++++++++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h
index f313f2f..a1dfab4 100644
--- a/include/migration/vmstate.h
+++ b/include/migration/vmstate.h
@@ -230,6 +230,7 @@ extern const VMStateInfo vmstate_info_uint8;
extern const VMStateInfo vmstate_info_uint16;
extern const VMStateInfo vmstate_info_uint32;
extern const VMStateInfo vmstate_info_uint64;
+extern const VMStateInfo vmstate_info_fd;
/** Put this in the stream when migrating a null pointer.*/
#define VMS_NULLPTR_MARKER (0x30U) /* '0' */
@@ -902,6 +903,9 @@ extern const VMStateInfo vmstate_info_qlist;
#define VMSTATE_UINT64_V(_f, _s, _v) \
VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint64, uint64_t)
+#define VMSTATE_FD_V(_f, _s, _v) \
+ VMSTATE_SINGLE(_f, _s, _v, vmstate_info_fd, int32_t)
+
#ifdef CONFIG_LINUX
#define VMSTATE_U8_V(_f, _s, _v) \
@@ -936,6 +940,9 @@ extern const VMStateInfo vmstate_info_qlist;
#define VMSTATE_UINT64(_f, _s) \
VMSTATE_UINT64_V(_f, _s, 0)
+#define VMSTATE_FD(_f, _s) \
+ VMSTATE_FD_V(_f, _s, 0)
+
#ifdef CONFIG_LINUX
#define VMSTATE_U8(_f, _s) \
@@ -1009,6 +1016,8 @@ extern const VMStateInfo vmstate_info_qlist;
#define VMSTATE_UINT64_TEST(_f, _s, _t) \
VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_info_uint64, uint64_t)
+#define VMSTATE_FD_TEST(_f, _s, _t)
\
+ VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_info_fd, int32_t)
#define VMSTATE_TIMER_PTR_TEST(_f, _s, _test) \
VMSTATE_POINTER_TEST(_f, _s, _test, vmstate_info_timer, QEMUTimer *)
diff --git a/migration/vmstate-types.c b/migration/vmstate-types.c
index d70d573..0319c35 100644
--- a/migration/vmstate-types.c
+++ b/migration/vmstate-types.c
@@ -314,6 +314,29 @@ const VMStateInfo vmstate_info_uint64 = {
.put = put_uint64,
};
+/* File descriptor communicated via SCM_RIGHTS */
+
+static int get_fd(QEMUFile *f, void *pv, size_t size,
+ const VMStateField *field)
+{
+ int32_t *v = pv;
+ *v = qemu_file_get_fd(f);
+ return 0;
+}
+
+static int put_fd(QEMUFile *f, void *pv, size_t size,
+ const VMStateField *field, JSONWriter *vmdesc)
+{
+ int32_t *v = pv;
+ return qemu_file_put_fd(f, *v);
+}
+
+const VMStateInfo vmstate_info_fd = {
+ .name = "fd",
+ .get = get_fd,
+ .put = put_fd,
+};
+
static int get_nullptr(QEMUFile *f, void *pv, size_t size,
const VMStateField *field)
--
1.8.3.1
- [PATCH V6 18/24] tests/qtest: optimize migrate_set_ports, (continued)
- [PATCH V6 18/24] tests/qtest: optimize migrate_set_ports, Steve Sistare, 2025/01/14
- [PATCH V6 12/24] migration: incoming channel, Steve Sistare, 2025/01/14
- [PATCH V6 20/24] migration-test: defer connection, Steve Sistare, 2025/01/14
- [PATCH V6 24/24] migration: cpr-transfer documentation, Steve Sistare, 2025/01/14
- [PATCH V6 11/24] migration: enhance migrate_uri_parse, Steve Sistare, 2025/01/14
- [PATCH V6 22/24] tests/qtest: assert qmp connected, Steve Sistare, 2025/01/14
- [PATCH V6 16/24] migration: cpr-transfer mode, Steve Sistare, 2025/01/14
- [PATCH V6 13/24] migration: SCM_RIGHTS for QEMUFile, Steve Sistare, 2025/01/14
- [PATCH V6 17/24] migration-test: memory_backend, Steve Sistare, 2025/01/14
- [PATCH V6 14/24] migration: VMSTATE_FD,
Steve Sistare <=
- [PATCH V6 15/24] migration: cpr-transfer save and load, Steve Sistare, 2025/01/14
- [PATCH V6 21/24] tests/qtest: enhance migration channels, Steve Sistare, 2025/01/14
- [PATCH V6 19/24] tests/qtest: defer connection, Steve Sistare, 2025/01/14
- [PATCH V6 23/24] migration-test: cpr-transfer, Steve Sistare, 2025/01/14
- Re: [PATCH V6 00/24] Live update: cpr-transfer, Steven Sistare, 2025/01/14
- Re: [PATCH V6 00/24] Live update: cpr-transfer, Fabiano Rosas, 2025/01/14