Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-26 Thread Blue Swirl
On Wed, Jun 22, 2011 at 7:53 AM, Amit Shah wrote: > On (Sun) 19 Jun 2011 [00:43:20], Blue Swirl wrote: >> On Sat, Jun 18, 2011 at 6:42 AM, Amit Shah wrote: >> > On (Fri) 17 Jun 2011 [15:08:11], Luiz Capitulino wrote: >> > >> >> > >          if (!cpkt.value) { >> >> > > -            error_report("

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-21 Thread Amit Shah
On (Sun) 19 Jun 2011 [00:43:20], Blue Swirl wrote: > On Sat, Jun 18, 2011 at 6:42 AM, Amit Shah wrote: > > On (Fri) 17 Jun 2011 [15:08:11], Luiz Capitulino wrote: > > > >> > >          if (!cpkt.value) { > >> > > -            error_report("virtio-serial-bus: Guest failure in adding > >> > > devic

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-18 Thread Blue Swirl
On Sat, Jun 18, 2011 at 6:42 AM, Amit Shah wrote: > On (Fri) 17 Jun 2011 [15:08:11], Luiz Capitulino wrote: > >> > >          if (!cpkt.value) { >> > > -            error_report("virtio-serial-bus: Guest failure in adding >> > > device %s\n", >> > > -                         vser->bus.qbus.name);

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-17 Thread Amit Shah
On (Fri) 17 Jun 2011 [15:08:11], Luiz Capitulino wrote: > > > if (!cpkt.value) { > > > -error_report("virtio-serial-bus: Guest failure in adding > > > device %s\n", > > > - vser->bus.qbus.name); > > > -break; > > > +error_report

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-17 Thread Luiz Capitulino
On Fri, 17 Jun 2011 21:39:26 +0530 Amit Shah wrote: > On (Fri) 17 Jun 2011 [10:16:44], Luiz Capitulino wrote: > > On Fri, 17 Jun 2011 12:17:36 +0530 > > Amit Shah wrote: > > > > > On (Thu) 16 Jun 2011 [13:38:49], Luiz Capitulino wrote: > > > > If I start qemu with: > > > > > > > > # qemu -hda

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-17 Thread Amit Shah
On (Fri) 17 Jun 2011 [10:16:44], Luiz Capitulino wrote: > On Fri, 17 Jun 2011 12:17:36 +0530 > Amit Shah wrote: > > > On (Thu) 16 Jun 2011 [13:38:49], Luiz Capitulino wrote: > > > If I start qemu with: > > > > > > # qemu -hda disks/test.img -enable-kvm -m 1G -snapshot \ > > > -device vi

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-17 Thread Luiz Capitulino
On Fri, 17 Jun 2011 10:16:44 -0300 Luiz Capitulino wrote: > On Fri, 17 Jun 2011 12:17:36 +0530 > Amit Shah wrote: > > > On (Thu) 16 Jun 2011 [13:38:49], Luiz Capitulino wrote: > > > If I start qemu with: > > > > > > # qemu -hda disks/test.img -enable-kvm -m 1G -snapshot \ > > > -devic

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-17 Thread Luiz Capitulino
On Fri, 17 Jun 2011 12:17:36 +0530 Amit Shah wrote: > On (Thu) 16 Jun 2011 [13:38:49], Luiz Capitulino wrote: > > If I start qemu with: > > > > # qemu -hda disks/test.img -enable-kvm -m 1G -snapshot \ > > -device virtio-serial \ > > -chardev socket,host=localhost,port=1234,serve

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-17 Thread Amit Shah
On (Fri) 17 Jun 2011 [09:47:31], Markus Armbruster wrote: > Amit Shah writes: > > > On (Thu) 16 Jun 2011 [13:38:49], Luiz Capitulino wrote: > >> If I start qemu with: > >> > >> # qemu -hda disks/test.img -enable-kvm -m 1G -snapshot \ > >> -device virtio-serial \ > >> -chardev so

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-17 Thread Markus Armbruster
Amit Shah writes: > On (Thu) 16 Jun 2011 [13:38:49], Luiz Capitulino wrote: >> If I start qemu with: >> >> # qemu -hda disks/test.img -enable-kvm -m 1G -snapshot \ >> -device virtio-serial \ >> -chardev socket,host=localhost,port=1234,server,nowait,id=foo \ >> -device vi

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-16 Thread Amit Shah
On (Thu) 16 Jun 2011 [13:38:49], Luiz Capitulino wrote: > If I start qemu with: > > # qemu -hda disks/test.img -enable-kvm -m 1G -snapshot \ > -device virtio-serial \ > -chardev socket,host=localhost,port=1234,server,nowait,id=foo \ > -device virtserialport,chardev=foo,nam

[Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-16 Thread Luiz Capitulino
If I start qemu with: # qemu -hda disks/test.img -enable-kvm -m 1G -snapshot \ -device virtio-serial \ -chardev socket,host=localhost,port=1234,server,nowait,id=foo \ -device virtserialport,chardev=foo,name=org.qemu.guest_agent I get a segfault when booting a Fedora 14 gu