From 0d42e48c73d3840fec57a6c4309b9a078138c6ce Mon Sep 17 00:00:00 2001 From: =?utf8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Tue, 9 Dec 2025 20:11:09 +0100 Subject: [PATCH] Revert "migration/vmstate: remove VMSTATE_BUFFER_POINTER_UNSAFE macro" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Next commit will re-use VMSTATE_BUFFER_POINTER_UNSAFE(). This reverts commit 58341158d022823234d25fd337654a82fa6d157b. Suggested-by: Fiona Ebner Signed-off-by: Philippe Mathieu-Daudé --- include/migration/vmstate.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h index df57e6550a..a87a5efa42 100644 --- a/include/migration/vmstate.h +++ b/include/migration/vmstate.h @@ -727,6 +727,15 @@ extern const VMStateInfo vmstate_info_qlist; .offset = offsetof(_state, _field), \ } +#define VMSTATE_BUFFER_POINTER_UNSAFE(_field, _state, _version, _size) { \ + .name = (stringify(_field)), \ + .version_id = (_version), \ + .size = (_size), \ + .info = &vmstate_info_buffer, \ + .flags = VMS_BUFFER | VMS_POINTER, \ + .offset = offsetof(_state, _field), \ +} + /* Allocate a temporary of type 'tmp_type', set tmp->parent to _state * and execute the vmsd on the temporary. Note that we're working with * the whole of _state here, not a field within it. -- 2.47.3