Re: [Qemu-devel] [PATCH] migration: Fix postcopy bw for recovery

2019-09-24 Thread Dr. David Alan Gilbert
* Markus Armbruster (arm...@redhat.com) wrote: > migration-tests hangs intermittently for me, and git bisect led me > here. Test script: > > i=0; while true; do let i++; echo "= $i ="; > MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} > QTEST_QEMU_BINARY=x86_64-softmmu/qemu-sy

Re: [Qemu-devel] [PATCH] migration: Fix postcopy bw for recovery

2019-09-24 Thread Markus Armbruster
migration-tests hangs intermittently for me, and git bisect led me here. Test script: i=0; while true; do let i++; echo "= $i ="; MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/migration-test -

Re: [Qemu-devel] [PATCH] migration: Fix postcopy bw for recovery

2019-09-12 Thread Dr. David Alan Gilbert
* Peter Xu (pet...@redhat.com) wrote: > We've got max-postcopy-bandwidth parameter but it's not applied > correctly after a postcopy recovery so the recovered migration stream > will still eat the whole net bandwidth. Fix that up. > > Reported-by: Xiaohui Li > Signed-off-by: Peter Xu Queued >

Re: [Qemu-devel] [PATCH] migration: Fix postcopy bw for recovery

2019-09-06 Thread Juan Quintela
Peter Xu wrote: > We've got max-postcopy-bandwidth parameter but it's not applied > correctly after a postcopy recovery so the recovered migration stream > will still eat the whole net bandwidth. Fix that up. > > Reported-by: Xiaohui Li > Signed-off-by: Peter Xu > --- > migration/migration.c |

[Qemu-devel] [PATCH] migration: Fix postcopy bw for recovery

2019-09-06 Thread Peter Xu
We've got max-postcopy-bandwidth parameter but it's not applied correctly after a postcopy recovery so the recovered migration stream will still eat the whole net bandwidth. Fix that up. Reported-by: Xiaohui Li Signed-off-by: Peter Xu --- migration/migration.c | 3 ++- 1 file changed, 2 insert