Re: [Qemu-devel] [v7 10/14] migration: Add the core code for decompression

2015-04-08 Thread Juan Quintela
"Li, Liang Z" wrote: >> > @@ -889,7 +889,6 @@ static inline void >> start_compression(CompressParam *param) >> > qemu_mutex_unlock(¶m->mutex); } >> > >> > - >> > static uint64_t bytes_transferred; >> > >> > static void flush_compressed_data(QEMUFile *f) @@ -1458,8 +1457,28 >> @@ >> > void

Re: [Qemu-devel] [v7 10/14] migration: Add the core code for decompression

2015-04-08 Thread Li, Liang Z
> > @@ -889,7 +889,6 @@ static inline void > start_compression(CompressParam *param) > > qemu_mutex_unlock(¶m->mutex); } > > > > - > > static uint64_t bytes_transferred; > > > > static void flush_compressed_data(QEMUFile *f) @@ -1458,8 +1457,28 > @@ > > void ram_handle_compressed(void *host

Re: [Qemu-devel] [v7 10/14] migration: Add the core code for decompression

2015-04-08 Thread Juan Quintela
Liang Li wrote: > Implement the core logic of multiple thread decompression, > the decompression can work now. > > Signed-off-by: Liang Li > Signed-off-by: Yang Zhang > --- > arch_init.c | 51 --- > 1 file changed, 48 insertions(+), 3 deletions(-)

[Qemu-devel] [v7 10/14] migration: Add the core code for decompression

2015-04-07 Thread Liang Li
Implement the core logic of multiple thread decompression, the decompression can work now. Signed-off-by: Liang Li Signed-off-by: Yang Zhang --- arch_init.c | 51 --- 1 file changed, 48 insertions(+), 3 deletions(-) diff --git a/arch_init.c b/arc