Re: [PATCH v2 2/6] ram: Let colo_flush_ram_cache take the bitmap_mutex

2023-05-09 Thread Juan Quintela
Lukas Straub wrote: > This is not required, colo_flush_ram_cache does not run concurrently > with the multifd threads since the cache is only flushed after > everything has been received. But it makes me more comfortable. > > This will be used in the next commits to add colo support to multifd. >

[PATCH v2 2/6] ram: Let colo_flush_ram_cache take the bitmap_mutex

2023-05-08 Thread Lukas Straub
This is not required, colo_flush_ram_cache does not run concurrently with the multifd threads since the cache is only flushed after everything has been received. But it makes me more comfortable. This will be used in the next commits to add colo support to multifd. Signed-off-by: Lukas Straub --