marcandre.lur...@redhat.com wrote: > From: Marc-André Lureau <marcandre.lur...@redhat.com> > > Signed-off-by: Marc-André Lureau <marcandre.lur...@redhat.com>
Reviewed-by: Juan Quintela <quint...@redhat.com> > @@ -2541,6 +2572,11 @@ qemu_loadvm_section_start_full(QEMUFile *f, > MigrationIncomingState *mis) > idstr, instance_id); > return -EINVAL; > } > + if (se->visited) { > + error_report("error while loading state for instance 0x%"PRIx32" of" > + " device '%s'", instance_id, idstr); > + return -EINVAL; > + } When this is a subsection (always) It would be a good idea to know what section we are talking about. but not sure how easy is to get that information. Later, Juan.