vmstate: Add support for partial buffers transmission
authorJuan Quintela <quintela@redhat.com>
Wed, 14 Oct 2009 13:24:50 +0000 (15:24 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Tue, 27 Oct 2009 17:28:48 +0000 (12:28 -0500)
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
hw/hw.h

diff --git a/hw/hw.h b/hw/hw.h
index c379000..0fda06a 100644 (file)
--- a/hw/hw.h
+++ b/hw/hw.h
@@ -473,6 +473,16 @@ extern const VMStateInfo vmstate_info_buffer;
     .offset       = offsetof(_state, _field)                         \
         + type_check_array(uint8_t,typeof_field(_state, _field),sizeof(typeof_field(_state,_field))) \
 }
+
+#define VMSTATE_PARTIAL_BUFFER(_field, _state, _size) {              \
+    .name       = (stringify(_field)),                               \
+    .size       = (_size),                                           \
+    .info       = &vmstate_info_buffer,                              \
+    .flags      = VMS_BUFFER,                                        \
+    .offset     = offsetof(_state, _field)                           \
+        + type_check_array(uint8_t,typeof_field(_state, _field),sizeof(typeof_field(_state,_field))) \
+}
+
 #define VMSTATE_BUFFER_START_MIDDLE(_field, _state, start) {         \
     .name       = (stringify(_field)),                               \
     .size       = sizeof(typeof_field(_state,_field)) - start,       \