qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [BUG latest master] - qemu segfaults when issuing screendump cmd
@ 2013-04-15 16:49 Lucas Meneghel Rodrigues
  2013-04-16  7:39 ` Gerd Hoffmann
  0 siblings, 1 reply; 5+ messages in thread
From: Lucas Meneghel Rodrigues @ 2013-04-15 16:49 UTC (permalink / raw)
  To: qemu-devel@nongnu.org; +Cc: Luiz Capitulino, Cleber Rosa

Latest qemu.git master is failing big time to pass sanity checks:

https://bugs.launchpad.net/qemu/+bug/1169254

We've had some issues with the test jobs, and finally managed to
stabilize the grid, so we don't have results for the last couple of
weeks to bisect the problem.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [BUG latest master] - qemu segfaults when issuing screendump cmd
  2013-04-15 16:49 [Qemu-devel] [BUG latest master] - qemu segfaults when issuing screendump cmd Lucas Meneghel Rodrigues
@ 2013-04-16  7:39 ` Gerd Hoffmann
  2013-04-17 18:49   ` Lucas Meneghel Rodrigues
  0 siblings, 1 reply; 5+ messages in thread
From: Gerd Hoffmann @ 2013-04-16  7:39 UTC (permalink / raw)
  To: Lucas Meneghel Rodrigues
  Cc: Cleber Rosa, qemu-devel@nongnu.org, Luiz Capitulino

On 04/15/13 18:49, Lucas Meneghel Rodrigues wrote:
> Latest qemu.git master is failing big time to pass sanity checks:
> 
> https://bugs.launchpad.net/qemu/+bug/1169254
> 
> We've had some issues with the test jobs, and finally managed to
> stabilize the grid, so we don't have results for the last couple of
> weeks to bisect the problem.

Can you try this?
  git://git.kraxel.org/qemu rebase/pixman

[ I'm about to prepare a pull req, was planning
   to do it last week but got sick ... ]

cheers,
  Gerd

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [BUG latest master] - qemu segfaults when issuing screendump cmd
  2013-04-16  7:39 ` Gerd Hoffmann
@ 2013-04-17 18:49   ` Lucas Meneghel Rodrigues
  2013-04-18  6:53     ` Gerd Hoffmann
  0 siblings, 1 reply; 5+ messages in thread
From: Lucas Meneghel Rodrigues @ 2013-04-17 18:49 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: Luiz Capitulino, qemu-devel@nongnu.org, Cleber Rosa

On Tue, 2013-04-16 at 09:39 +0200, Gerd Hoffmann wrote:
> On 04/15/13 18:49, Lucas Meneghel Rodrigues wrote:
> > Latest qemu.git master is failing big time to pass sanity checks:
> > 
> > https://bugs.launchpad.net/qemu/+bug/1169254
> > 
> > We've had some issues with the test jobs, and finally managed to
> > stabilize the grid, so we don't have results for the last couple of
> > weeks to bisect the problem.
> 
> Can you try this?
>   git://git.kraxel.org/qemu rebase/pixman
> 
> [ I'm about to prepare a pull req, was planning
>    to do it last week but got sick ... ]

Yes, in your branch, the problem is solved. Anthony came up with an even
simpler reproducer:

$ (sleep 1; echo -e 'screendump abc.ppm\nquit') | MALLOC_PERTURB_=1 x86_64-softmmu/qemu-system-x86_64 -monitor stdio -vnc :0
QEMU 1.4.50 monitor - type 'help' for more information
(qemu) screendump abc.ppm
(qemu) quit

With current master, qemu crashes.

[lmr@thinkpad-t420s qemu-gerd]$ (sleep 1; echo -e 'screendump abc.ppm\nquit') | MALLOC_PERTURB_=1 x86_64-softmmu/qemu-system-x86_64 -monitor stdio -vnc :0
QEMU 1.4.50 monitor - type 'help' for more information
(qemu) screendump abc.ppm
Segmentation fault

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [BUG latest master] - qemu segfaults when issuing screendump cmd
  2013-04-17 18:49   ` Lucas Meneghel Rodrigues
@ 2013-04-18  6:53     ` Gerd Hoffmann
  2013-04-18 14:56       ` Lucas Meneghel Rodrigues
  0 siblings, 1 reply; 5+ messages in thread
From: Gerd Hoffmann @ 2013-04-18  6:53 UTC (permalink / raw)
  To: Lucas Meneghel Rodrigues
  Cc: Luiz Capitulino, qemu-devel@nongnu.org, Cleber Rosa

>> Can you try this?
>>   git://git.kraxel.org/qemu rebase/pixman
>>

> With current master, qemu crashes.

FYI: pull req sent, anthony merged, so it is fixed in master now.

autotest might need adaptions nevertheless, on headless configurations
(-vga none) qemu starts throwing errors now (due to lack of a screen it
can dump from) instead of silently doing nothing.

cheers,
  Gerd

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [BUG latest master] - qemu segfaults when issuing screendump cmd
  2013-04-18  6:53     ` Gerd Hoffmann
@ 2013-04-18 14:56       ` Lucas Meneghel Rodrigues
  0 siblings, 0 replies; 5+ messages in thread
From: Lucas Meneghel Rodrigues @ 2013-04-18 14:56 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: Luiz Capitulino, qemu-devel@nongnu.org, Cleber Rosa

On Thu, 2013-04-18 at 08:53 +0200, Gerd Hoffmann wrote:
> >> Can you try this?
> >>   git://git.kraxel.org/qemu rebase/pixman
> >>
> 
> > With current master, qemu crashes.
> 
> FYI: pull req sent, anthony merged, so it is fixed in master now.
> 
> autotest might need adaptions nevertheless, on headless configurations
> (-vga none) qemu starts throwing errors now (due to lack of a screen it
> can dump from) instead of silently doing nothing.

Oh, absolutely. An error at least is normal program operation/behavior,
so we'll adapt it. It's rather different than a segmentation fault,
which is a bug regardless of the circumstances.

Thanks, I'll verify and mark the bug as fixed.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-04-18 14:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-15 16:49 [Qemu-devel] [BUG latest master] - qemu segfaults when issuing screendump cmd Lucas Meneghel Rodrigues
2013-04-16  7:39 ` Gerd Hoffmann
2013-04-17 18:49   ` Lucas Meneghel Rodrigues
2013-04-18  6:53     ` Gerd Hoffmann
2013-04-18 14:56       ` Lucas Meneghel Rodrigues

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).