Message ID | 20240513071905.499143-3-marcandre.lureau@redhat.com |
---|---|
State | New |
Headers | show |
Series | Fix "virtio-gpu: fix scanout migration post-load" | expand |
marcandre.lureau@redhat.com writes: > From: Marc-André Lureau <marcandre.lureau@redhat.com> > > Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> > --- > migration/vmstate.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/migration/vmstate.c b/migration/vmstate.c > index b51212a75b..ff5d589a6d 100644 > --- a/migration/vmstate.c > +++ b/migration/vmstate.c > @@ -479,7 +479,7 @@ static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd, > > len = qemu_peek_byte(f, 1); > if (len < strlen(vmsd->name) + 1) { > - /* subsection name has be be "section_name/a" */ > + /* subsection name has to be "section_name/a" */ > trace_vmstate_subsection_load_bad(vmsd->name, "(short)", ""); > return 0; > } Reviewed-by: Fabiano Rosas <farosas@suse.de>
On Mon, May 13, 2024 at 11:19:03AM +0400, marcandre.lureau@redhat.com wrote: > From: Marc-André Lureau <marcandre.lureau@redhat.com> > > Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Peter Xu <peterx@redhat.com>
diff --git a/migration/vmstate.c b/migration/vmstate.c index b51212a75b..ff5d589a6d 100644 --- a/migration/vmstate.c +++ b/migration/vmstate.c @@ -479,7 +479,7 @@ static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd, len = qemu_peek_byte(f, 1); if (len < strlen(vmsd->name) + 1) { - /* subsection name has be be "section_name/a" */ + /* subsection name has to be "section_name/a" */ trace_vmstate_subsection_load_bad(vmsd->name, "(short)", ""); return 0; }