Re: [Qemu-devel] [PATCH v2 7/9] chardev: tcp: postpone async connection setup

2018-08-16 Thread Peter Xu
On Thu, Aug 16, 2018 at 08:27:40PM +0200, Marc-André Lureau wrote: > Hi > On Thu, Aug 16, 2018 at 7:49 PM Marc-André Lureau > wrote: > > > > Hi > > On Tue, Mar 6, 2018 at 6:41 AM Peter Xu wrote: > > > > > > This patch allows the socket chardev async connection be setup with > > > non-default gcon

Re: [Qemu-devel] [PATCH v2 7/9] chardev: tcp: postpone async connection setup

2018-08-16 Thread Marc-André Lureau
Hi On Thu, Aug 16, 2018 at 7:49 PM Marc-André Lureau wrote: > > Hi > On Tue, Mar 6, 2018 at 6:41 AM Peter Xu wrote: > > > > This patch allows the socket chardev async connection be setup with > > non-default gcontext. We do it by postponing the setup to machine done, > > since until then we can

Re: [Qemu-devel] [PATCH v2 7/9] chardev: tcp: postpone async connection setup

2018-08-16 Thread Marc-André Lureau
Hi On Tue, Mar 6, 2018 at 6:41 AM Peter Xu wrote: > > This patch allows the socket chardev async connection be setup with > non-default gcontext. We do it by postponing the setup to machine done, > since until then we can know which context we should run the async > operation on. > > Reviewed-by:

Re: [Qemu-devel] [PATCH v2 7/9] chardev: tcp: postpone async connection setup

2018-03-07 Thread Daniel P . Berrangé
On Tue, Mar 06, 2018 at 01:33:18PM +0800, Peter Xu wrote: > This patch allows the socket chardev async connection be setup with > non-default gcontext. We do it by postponing the setup to machine done, > since until then we can know which context we should run the async > operation on. > > Review

[Qemu-devel] [PATCH v2 7/9] chardev: tcp: postpone async connection setup

2018-03-05 Thread Peter Xu
This patch allows the socket chardev async connection be setup with non-default gcontext. We do it by postponing the setup to machine done, since until then we can know which context we should run the async operation on. Reviewed-by: Paolo Bonzini Signed-off-by: Peter Xu --- chardev/char-socke