Re: [Qemu-devel] [PATCH v3 6/8] migration: Make none operations into its own structure

2019-06-12 Thread Juan Quintela
"Dr. David Alan Gilbert" wrote: > * Juan Quintela (quint...@redhat.com) wrote: >> It will be used later. > > 'none' is confusing - I think this is no-compression specifically - > right? > I'd be happy with something abbreviated like 'nocomp' I don't care too much, I can change, but when you are

Re: [Qemu-devel] [PATCH v3 6/8] migration: Make none operations into its own structure

2019-06-10 Thread Juan Quintela
"Dr. David Alan Gilbert" wrote: > * Juan Quintela (quint...@redhat.com) wrote: >> It will be used later. > > 'none' is confusing - I think this is no-compression specifically - > right? > I'd be happy with something abbreviated like 'nocomp' Got into nocomp. >> @@ -1093,6 +1129,8 @@ static void

Re: [Qemu-devel] [PATCH v3 6/8] migration: Make none operations into its own structure

2019-06-10 Thread Juan Quintela
Wei Yang wrote: > On Wed, May 15, 2019 at 02:15:42PM +0200, Juan Quintela wrote: >>+ >>+MultifdMethods multifd_none_ops = { >>+.send_prepare = none_send_prepare, >>+.send_write = none_send_write, >>+.recv_pages = none_recv_pages >>+}; >>+ >> static int

Re: [Qemu-devel] [PATCH v3 6/8] migration: Make none operations into its own structure

2019-05-29 Thread Dr. David Alan Gilbert
* Juan Quintela (quint...@redhat.com) wrote: > It will be used later. 'none' is confusing - I think this is no-compression specifically - right? I'd be happy with something abbreviated like 'nocomp' > Signed-off-by: Juan Quintela > --- > migration/ram.c | 54

Re: [Qemu-devel] [PATCH v3 6/8] migration: Make none operations into its own structure

2019-05-20 Thread Wei Yang
On Wed, May 15, 2019 at 02:15:42PM +0200, Juan Quintela wrote: >+ >+MultifdMethods multifd_none_ops = { >+.send_prepare = none_send_prepare, >+.send_write = none_send_write, >+.recv_pages = none_recv_pages >+}; >+ > static int multifd_send_initial_packet(MultiFDSendParams *p, Error

[Qemu-devel] [PATCH v3 6/8] migration: Make none operations into its own structure

2019-05-15 Thread Juan Quintela
It will be used later. Signed-off-by: Juan Quintela --- migration/ram.c | 54 - 1 file changed, 49 insertions(+), 5 deletions(-) diff --git a/migration/ram.c b/migration/ram.c index 1ca9ba77b6..6679e4f213 100644 --- a/migration/ram.c +++