Re: [Qemu-devel] [PATCH 02/12] savevm: Live migration handlers register the struct directly

2012-07-11 Thread Juan Quintela
Orit Wasserman wrote: > On 07/01/2012 01:20 PM, Juan Quintela wrote: >> Orit Wasserman wrote: >>> On 06/28/2012 10:22 PM, Juan Quintela wrote: Notice that the live migration users never unregister, so no problem about freeing the ops structure. void unregister_savevm(DeviceState *

Re: [Qemu-devel] [PATCH 02/12] savevm: Live migration handlers register the struct directly

2012-07-11 Thread Orit Wasserman
On 07/11/2012 08:01 PM, Juan Quintela wrote: > Orit Wasserman wrote: >> On 07/01/2012 01:20 PM, Juan Quintela wrote: >>> Orit Wasserman wrote: On 06/28/2012 10:22 PM, Juan Quintela wrote: > Notice that the live migration users never unregister, so no problem > about freeing the ops s

Re: [Qemu-devel] [PATCH 02/12] savevm: Live migration handlers register the struct directly

2012-07-01 Thread Orit Wasserman
On 07/01/2012 01:20 PM, Juan Quintela wrote: > Orit Wasserman wrote: >> On 06/28/2012 10:22 PM, Juan Quintela wrote: >>> Notice that the live migration users never unregister, so no problem >>> about freeing the ops structure. >>> void unregister_savevm(DeviceState *dev, const char *idstr, void *

Re: [Qemu-devel] [PATCH 02/12] savevm: Live migration handlers register the struct directly

2012-07-01 Thread Juan Quintela
Orit Wasserman wrote: > On 06/28/2012 10:22 PM, Juan Quintela wrote: >> Notice that the live migration users never unregister, so no problem >> about freeing the ops structure. >> void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque) >> diff --git a/vl.c b/vl.c >> index 1329c3

Re: [Qemu-devel] [PATCH 02/12] savevm: Live migration handlers register the struct directly

2012-07-01 Thread Orit Wasserman
On 06/28/2012 10:22 PM, Juan Quintela wrote: > Notice that the live migration users never unregister, so no problem > about freeing the ops structure. > > Signed-off-by: Juan Quintela > --- > arch_init.c |9 +++-- > block-migration.c | 10 -- > migration.h |4 ++

Re: [Qemu-devel] [PATCH 02/12] savevm: Live migration handlers register the struct directly

2012-06-29 Thread Juan Quintela
Igor Mitsyanko wrote: > On 06/28/2012 11:22 PM, Juan Quintela wrote: >> Notice that the live migration users never unregister, so no problem >> about freeing the ops structure. >> >> Signed-off-by: Juan Quintela >> --- >> arch_init.c |9 +++-- >> block-migration.c | 10

Re: [Qemu-devel] [PATCH 02/12] savevm: Live migration handlers register the struct directly

2012-06-29 Thread Igor Mitsyanko
On 06/28/2012 11:22 PM, Juan Quintela wrote: Notice that the live migration users never unregister, so no problem about freeing the ops structure. Signed-off-by: Juan Quintela --- arch_init.c |9 +++-- block-migration.c | 10 -- migration.h |4 ++-- savevm

[Qemu-devel] [PATCH 02/12] savevm: Live migration handlers register the struct directly

2012-06-28 Thread Juan Quintela
Notice that the live migration users never unregister, so no problem about freeing the ops structure. Signed-off-by: Juan Quintela --- arch_init.c |9 +++-- block-migration.c | 10 -- migration.h |4 ++-- savevm.c | 18 +++--- vl.c