qemu-ppc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-ppc] [Qemu-devel] [QEMU PATCH v5 4/6] migration: migrate QTAIL


From: Paolo Bonzini
Subject: Re: [Qemu-ppc] [Qemu-devel] [QEMU PATCH v5 4/6] migration: migrate QTAILQ
Date: Fri, 7 Oct 2016 16:31:55 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0


On 06/10/2016 21:01, Dr. David Alan Gilbert wrote:
>> >> +                } else if (field->flags & VMS_LINKED) {
>> >> +                    ret = field->info->get(f, addr, size, field);
>> >>                  } else {
>> >>                      ret = field->info->get(f, addr, size, NULL);
>> >>  
>> >> @@ -193,6 +197,8 @@ static const char *vmfield_get_type_name(VMStateField 
>> >> *field)
>> >>  
>> >>      if (field->flags & VMS_STRUCT) {
>> >>          type = "struct";
>> >> +    } else if (field->flags & VMS_LINKED) {
>> >> +        type = "linked";
>> >>      } else if (field->info->name) {
>> >>          type = field->info->name;
>> >>      }
>> >> @@ -327,6 +333,8 @@ void vmstate_save_state(QEMUFile *f, const 
>> >> VMStateDescription *vmsd,
>> >>                  }
>> >>                  if (field->flags & VMS_STRUCT) {
>> >>                      vmstate_save_state(f, field->vmsd, addr, 
>> >> vmdesc_loop);
>> >> +                } else if  (field->flags & VMS_LINKED) {
>> >> +                    field->info->put(f, addr, size, field, vmdesc_loop);
>> >>                  } else {
>> >>                      field->info->put(f, addr, size, NULL, NULL);
>> >>                  }

Is VMS_LINKED needed at all, since the fields are unused for every
VMStateInfo except qtailq?

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]