Peter Xu <pet...@redhat.com> wrote: > It was in SaveState but now moved to MigrationState altogether, reverted > its meaning, then renamed to "send_configuration". Again, using > HW_COMPAT_2_3 for old PC/SPAPR machines, and accel_register_prop() for > xen_init(). > > Removing savevm_skip_configuration(). > > Signed-off-by: Peter Xu <pet...@redhat.com>
Reviewed-by: Juan Quintela <quint...@redhat.com> > - if (!savevm_state.skip_configuration || enforce_config_section()) { > + if (migrate_get_current()->send_configuration || > + enforce_config_section()) { > qemu_put_byte(f, QEMU_VM_CONFIGURATION); > vmstate_save_state(f, &vmstate_configuration, &savevm_state, 0); > } It is a different problem, but this patch makes enforce_config_section optional, no? We can get the same behaviour with this new option, right? Looking at the code, it is not clear to me if it is easier to put enforce_config_option on top of this patch, or let things as they are. Opinions? Thanks, Juan.