Re: [PATCH] migration: fix multifd_send_pages() next channel

2020-06-17 Thread Juan Quintela
Laurent Vivier wrote: > multifd_send_pages() loops around the available channels, > the next channel to use between two calls to multifd_send_pages() is stored > inside a local static variable, next_channel. > > It works well, except if the number of channels decreases between two calls > to

Re: [PATCH] migration: fix multifd_send_pages() next channel

2020-06-17 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200617113154.593233-1-lviv...@redhat.com/ Hi, This series failed the asan build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN === #!/bin/bash

[PATCH] migration: fix multifd_send_pages() next channel

2020-06-17 Thread Laurent Vivier
multifd_send_pages() loops around the available channels, the next channel to use between two calls to multifd_send_pages() is stored inside a local static variable, next_channel. It works well, except if the number of channels decreases between two calls to multifd_send_pages(). In this case,