Re: [Qemu-devel] [PATCH RESEND] migration: catch unknown flags in ram_load

2014-06-10 Thread Amit Shah
On (Tue) 03 Jun 2014 [18:27:15], Dr. David Alan Gilbert wrote: * Peter Lieven (p...@kamp.de) wrote: if a saved vm has unknown flags in the memory data qemu currently simply ignores this flag and continues which yields in an unpredictable result. this patch catches all unknown flags and

Re: [Qemu-devel] [PATCH RESEND] migration: catch unknown flags in ram_load

2014-06-10 Thread Peter Lieven
On 10.06.2014 09:31, Amit Shah wrote: On (Tue) 03 Jun 2014 [18:27:15], Dr. David Alan Gilbert wrote: * Peter Lieven (p...@kamp.de) wrote: if a saved vm has unknown flags in the memory data qemu currently simply ignores this flag and continues which yields in an unpredictable result. this

Re: [Qemu-devel] [PATCH RESEND] migration: catch unknown flags in ram_load

2014-06-06 Thread Amit Shah
On (Tue) 03 Jun 2014 [18:27:15], Dr. David Alan Gilbert wrote: * Peter Lieven (p...@kamp.de) wrote: if a saved vm has unknown flags in the memory data qemu currently simply ignores this flag and continues which yields in an unpredictable result. this patch catches all unknown flags and

Re: [Qemu-devel] [PATCH RESEND] migration: catch unknown flags in ram_load

2014-06-03 Thread Dr. David Alan Gilbert
* Peter Lieven (p...@kamp.de) wrote: if a saved vm has unknown flags in the memory data qemu currently simply ignores this flag and continues which yields in an unpredictable result. this patch catches all unknown flags and aborts the loading of the vm. Yes, I think that's quite nice - the

[Qemu-devel] [PATCH RESEND] migration: catch unknown flags in ram_load

2014-05-30 Thread Peter Lieven
if a saved vm has unknown flags in the memory data qemu currently simply ignores this flag and continues which yields in an unpredictable result. this patch catches all unknown flags and aborts the loading of the vm. CC: qemu-sta...@nongnu.org Signed-off-by: Peter Lieven p...@kamp.de