From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: QingFeng Hao <haoqf@linux.vnet.ibm.com>
Cc: qemu-block@nongnu.org, qemu-devel@nongnu.org,
borntraeger@de.ibm.com, cornelia.huck@de.ibm.com,
pasic@linux.vnet.ibm.com, liujbjl@linux.vnet.ibm.com,
kwolf@redhat.com, famz@redhat.com, mreitz@redhat.com,
quintela@redhat.com
Subject: Re: [Qemu-devel] [PATCH v1 1/1] vmstate: fix failed iotests case 68 and 91
Date: Tue, 14 Mar 2017 14:13:57 +0000 [thread overview]
Message-ID: <20170314141356.GK2445@work-vm> (raw)
In-Reply-To: <20170310044402.38880-2-haoqf@linux.vnet.ibm.com>
* QingFeng Hao (haoqf@linux.vnet.ibm.com) wrote:
> This problem affects s390x only if we are running without KVM.
> Basically, S390CPU.irqstate is unused if we do not use KVM,
> and thus no buffer is allocated.
> This causes size=0, first_elem=NULL and n_elems=1 in
> vmstate_load_state and vmstate_save_state. And the assert fails.
> With this fix we can go back to the old behavior and support
> VMS_VBUFFER with size 0 and nullptr.
>
> Signed-off-by: QingFeng Hao <haoqf@linux.vnet.ibm.com>
> Signed-off-by: Halil Pasic <pasic@linux.vnet.ibm.com>
Thanks, and fixes problem with vmxnet3 migration.
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Dave
> ---
> migration/vmstate.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/migration/vmstate.c b/migration/vmstate.c
> index 78b3cd4..7b4a607 100644
> --- a/migration/vmstate.c
> +++ b/migration/vmstate.c
> @@ -109,7 +109,7 @@ int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
> vmstate_handle_alloc(first_elem, field, opaque);
> if (field->flags & VMS_POINTER) {
> first_elem = *(void **)first_elem;
> - assert(first_elem || !n_elems);
> + assert(first_elem || !n_elems || !size);
> }
> for (i = 0; i < n_elems; i++) {
> void *curr_elem = first_elem + size * i;
> @@ -117,7 +117,7 @@ int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
> if (field->flags & VMS_ARRAY_OF_POINTER) {
> curr_elem = *(void **)curr_elem;
> }
> - if (!curr_elem) {
> + if (!curr_elem && size) {
> /* if null pointer check placeholder and do not follow */
> assert(field->flags & VMS_ARRAY_OF_POINTER);
> ret = vmstate_info_nullptr.get(f, curr_elem, size, NULL);
> @@ -325,7 +325,7 @@ void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
> trace_vmstate_save_state_loop(vmsd->name, field->name, n_elems);
> if (field->flags & VMS_POINTER) {
> first_elem = *(void **)first_elem;
> - assert(first_elem || !n_elems);
> + assert(first_elem || !n_elems || !size);
> }
> for (i = 0; i < n_elems; i++) {
> void *curr_elem = first_elem + size * i;
> @@ -336,7 +336,7 @@ void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
> assert(curr_elem);
> curr_elem = *(void **)curr_elem;
> }
> - if (!curr_elem) {
> + if (!curr_elem && size) {
> /* if null pointer write placeholder and do not follow */
> assert(field->flags & VMS_ARRAY_OF_POINTER);
> vmstate_info_nullptr.put(f, curr_elem, size, NULL, NULL);
> --
> 1.8.3.1
>
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2017-03-14 14:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-10 4:44 [Qemu-devel] [PATCH v1 0/1] vmstate: fix failed iotests case 68 and 91 QingFeng Hao
2017-03-10 4:44 ` [Qemu-devel] [PATCH v1 1/1] " QingFeng Hao
2017-03-14 14:13 ` Dr. David Alan Gilbert [this message]
2017-03-15 1:21 ` QingFeng Hao
2017-03-16 8:01 ` Juan Quintela
2017-03-17 2:32 ` QingFeng Hao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170314141356.GK2445@work-vm \
--to=dgilbert@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=cornelia.huck@de.ibm.com \
--cc=famz@redhat.com \
--cc=haoqf@linux.vnet.ibm.com \
--cc=kwolf@redhat.com \
--cc=liujbjl@linux.vnet.ibm.com \
--cc=mreitz@redhat.com \
--cc=pasic@linux.vnet.ibm.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.