Re: [Qemu-devel] [PATCH v4 2/4] char: convert from GIOChannel to QIOChannel

2016-03-20 Thread Laurent Vivier
Hi, testing something else (migration...) I've discovered (by bisecting) that this patch can allow to lock the machine. I'm using the pseries machine, but I think it should happen with PC too. I start a machine with: ... -device virtio-serial-pci,id=serial0 \ -chardev soc

Re: [Qemu-devel] [PATCH v4 2/4] char: convert from GIOChannel to QIOChannel

2016-03-19 Thread Laurent Vivier
On 18/03/2016 17:56, Daniel P. Berrange wrote: > On Fri, Mar 18, 2016 at 05:43:42PM +0100, Laurent Vivier wrote: >> Hi, >> >> testing something else (migration...) I've discovered (by bisecting) >> that this patch can allow to lock the machine. I'm using the pseries >> machine, but I think it sho

Re: [Qemu-devel] [PATCH v4 2/4] char: convert from GIOChannel to QIOChannel

2016-03-19 Thread Daniel P. Berrange
On Fri, Mar 18, 2016 at 05:43:42PM +0100, Laurent Vivier wrote: > Hi, > > testing something else (migration...) I've discovered (by bisecting) > that this patch can allow to lock the machine. I'm using the pseries > machine, but I think it should happen with PC too. > > I start a machine with: >

[Qemu-devel] [PATCH v4 2/4] char: convert from GIOChannel to QIOChannel

2016-01-19 Thread Daniel P. Berrange
In preparation for introducing TLS support to the TCP chardev backend, convert existing chardev code from using GIOChannel to QIOChannel. This simplifies the chardev code by removing most of the OS platform conditional code for dealing with file descriptor passing. Signed-off-by: Daniel P. Berrang