Re: [PATCH 16/42] migration-test: Create do_migrate()

2023-06-21 Thread Juan Quintela
Peter Xu wrote: > On Fri, Jun 09, 2023 at 12:49:17AM +0200, Juan Quintela wrote: >> We called migrate_qmp() in lot of places. And there are tricks like >> changing tcp address with the right port. >> >> Only two callers remaining: >> - postcopy resume: It needs to play with the qmp. >> - baddest

Re: [PATCH 16/42] migration-test: Create do_migrate()

2023-06-20 Thread Peter Xu
On Fri, Jun 09, 2023 at 12:49:17AM +0200, Juan Quintela wrote: > We called migrate_qmp() in lot of places. And there are tricks like > changing tcp address with the right port. > > Only two callers remaining: > - postcopy resume: It needs to play with the qmp. > - baddest: We want to do a unvalid

[PATCH 16/42] migration-test: Create do_migrate()

2023-06-08 Thread Juan Quintela
We called migrate_qmp() in lot of places. And there are tricks like changing tcp address with the right port. Only two callers remaining: - postcopy resume: It needs to play with the qmp. - baddest: We want to do a unvalid URI. For that we need to do it by hand. Signed-off-by: Juan Quintela -