Re: [libvirt] [PATCH] qemu: Fix serial stub console allocation

2017-06-01 Thread Erik Skultety
On Mon, May 29, 2017 at 02:33:04PM +0200, Peter Krempa wrote: > On Mon, May 29, 2017 at 13:11:09 +0200, Erik Skultety wrote: > > When adding the aliased serial stub console, the structure wasn't > > properly allocated (VIR_ALLOC instead of virDomainChrDefNew) which then > > resulted in SIGSEGV in v

Re: [libvirt] [PATCH] qemu: Fix serial stub console allocation

2017-05-29 Thread Peter Krempa
On Mon, May 29, 2017 at 13:11:09 +0200, Erik Skultety wrote: > When adding the aliased serial stub console, the structure wasn't > properly allocated (VIR_ALLOC instead of virDomainChrDefNew) which then > resulted in SIGSEGV in virDomainChrSourceIsEqual during a serial device > coldplug. > > https

[libvirt] [PATCH] qemu: Fix serial stub console allocation

2017-05-29 Thread Erik Skultety
When adding the aliased serial stub console, the structure wasn't properly allocated (VIR_ALLOC instead of virDomainChrDefNew) which then resulted in SIGSEGV in virDomainChrSourceIsEqual during a serial device coldplug. https://bugzilla.redhat.com/show_bug.cgi?id=1434278 Signed-off-by: Erik Skult