Re: [Qemu-devel] [PATCH v3 1/2] migration: Create tcp_port parameter

2018-01-04 Thread Juan Quintela
Peter Xu wrote: >> @@ -1659,6 +1662,10 @@ void hmp_migrate_set_parameter(Monitor *mon, const >> QDict *qdict) >> } >> p->xbzrle_cache_size = cache_size; >> break; >> +case MIGRATION_PARAMETER_TCP_PORT: >> +p->has_tcp_port = true; >> +visit_type_uint

Re: [Qemu-devel] [PATCH v3 1/2] migration: Create tcp_port parameter

2018-01-04 Thread Juan Quintela
Eric Blake wrote: > On 12/01/2017 06:57 AM, Juan Quintela wrote: >> It will be used to store the uri tcp_port parameter. This is the only >> parameter than can change and we can need to be able to connect to it. >> >> Signed-off-by: Juan Quintela >> >> -- >> > >> @@ -2422,6 +2430,8 @@ static Pro

Re: [Qemu-devel] [PATCH v3 1/2] migration: Create tcp_port parameter

2017-12-08 Thread Dr. David Alan Gilbert
* Peter Xu (pet...@redhat.com) wrote: > On Fri, Dec 01, 2017 at 01:57:49PM +0100, Juan Quintela wrote: > > It will be used to store the uri tcp_port parameter. This is the only > > parameter than can change and we can need to be able to connect to it. > > > > Signed-off-by: Juan Quintela > > >

Re: [Qemu-devel] [PATCH v3 1/2] migration: Create tcp_port parameter

2017-12-05 Thread Peter Xu
On Fri, Dec 01, 2017 at 01:57:49PM +0100, Juan Quintela wrote: > It will be used to store the uri tcp_port parameter. This is the only > parameter than can change and we can need to be able to connect to it. > > Signed-off-by: Juan Quintela > > -- > > This used to be uri parameter, but it has

Re: [Qemu-devel] [PATCH v3 1/2] migration: Create tcp_port parameter

2017-12-01 Thread Eric Blake
On 12/01/2017 06:57 AM, Juan Quintela wrote: It will be used to store the uri tcp_port parameter. This is the only parameter than can change and we can need to be able to connect to it. Signed-off-by: Juan Quintela -- @@ -2422,6 +2430,8 @@ static Property migration_properties[] = {

[Qemu-devel] [PATCH v3 1/2] migration: Create tcp_port parameter

2017-12-01 Thread Juan Quintela
It will be used to store the uri tcp_port parameter. This is the only parameter than can change and we can need to be able to connect to it. Signed-off-by: Juan Quintela -- This used to be uri parameter, but it has so many troubles to reproduce that it don't just make sense. --- hmp.c