Lukas Straub <[email protected]> wrote: > This makes the core compress code more independend from ram.c. > > Signed-off-by: Lukas Straub <[email protected]>
Reviewed-by: Juan Quintela <[email protected]> I haven't looked all the series yet > @@ -1575,15 +1577,8 @@ static void flush_compressed_data(RAMState *rs) > qemu_mutex_lock(&comp_param[idx].mutex); > if (!comp_param[idx].quit) { > CompressParam *param = &comp_param[idx]; > - len = send_queued_data(param); > + send_queued_data(param); but it appears that send_queued_data don't need to return anything now.
