@@ -328,7 +328,9 @@ void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
addr = *(void **)addr;
}
if (field->flags & VMS_STRUCT) {
- vmstate_save_state(f, field->vmsd, addr, vmdesc_loop);
+ if (vmstate_save_needed(field->vmsd, addr)) {
+ vmstate_save_state(f, field->vmsd, addr, vmdesc_loop);
+ }
} else {
field->info->put(f, addr, size);
}
@@ -497,6 +497,23 @@ const VMStateDescription vmsd_tst = {
}
};
+static bool tst_null_check(void *opaque)
+{
+ fprintf(stderr, "%s: %p\n", __func__, opaque);
+ return opaque != NULL;
+}
+
+const VMStateDescription vmsd_tst_null = {
+ .name = "test/tstnull",
+ .version_id = 1,
+ .minimum_version_id = 1,
+ .needed = tst_null_check,
+ .fields = (VMStateField[]) {
+ VMSTATE_INT32(i, TestStructTriv),
+ VMSTATE_END_OF_LIST()
+ }
+};
+
#define AR_SIZE 4
typedef struct {
@@ -513,6 +530,16 @@ const VMStateDescription vmsd_arps = {
VMSTATE_END_OF_LIST()
}
};
+const VMStateDescription vmsd_arps_null = {
+ .name = "test/arpsnull",
+ .version_id = 1,
+ .minimum_version_id = 1,
+ .fields = (VMStateField[]) {
+ VMSTATE_ARRAY_OF_POINTER_TO_STRUCT(ar, TestArrayOfPtrToStuct,
+ AR_SIZE, 0, vmsd_tst_null, TestStructTriv),
+ VMSTATE_END_OF_LIST()
+ }
+};
static void test_arr_ptr_str_no0_save(void)
{
TestStructTriv ar[AR_SIZE] = {{.i = 0}, {.i = 1}, {.i = 2}, {.i = 3} };
@@ -557,7 +584,7 @@ static void test_arr_ptr_str_0_save(void)
TestStructTriv ar[AR_SIZE] = {{.i = 0}, {.i = 1}, {.i = 2}, {.i = 3} };
TestArrayOfPtrToStuct sample = {.ar = {&ar[0], NULL, &ar[2], &ar[3]} };
- save_vmstate(&vmsd_arps, &sample); /* fails with SEGFAULT with master */
+ save_vmstate(&vmsd_arps_null, &sample); /* fails with SEGFAULT with master */
}
static void test_arr_ptr_str_0_load(void)
@@ -568,14 +595,13 @@ static void test_arr_ptr_str_0_load(void)
int idx;
uint8_t wire_sample[] = {
0x00, 0x00, 0x00, 0x00,
- 0x00, /* marker for the null pointer */
0x00, 0x00, 0x00, 0x02,
0x00, 0x00, 0x00, 0x03,
QEMU_VM_EOF
};
save_buffer(wire_sample, sizeof(wire_sample));
- SUCCESS(load_vmstate_one(&vmsd_arps, &obj, 1,
+ SUCCESS(load_vmstate_one(&vmsd_arps_null, &obj, 1,
wire_sample, sizeof(wire_sample)));
for (idx = 0; idx < AR_SIZE; ++idx) {
/* compare the target array ar with the ground truth array ar_gt */