qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [6577] Fix displaystate (r6344) regression in blizzard
@ 2009-02-09 17:00 Aurelien Jarno
  0 siblings, 0 replies; only message in thread
From: Aurelien Jarno @ 2009-02-09 17:00 UTC (permalink / raw)
  To: qemu-devel

Revision: 6577
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6577
Author:   aurel32
Date:     2009-02-09 17:00:41 +0000 (Mon, 09 Feb 2009)

Log Message:
-----------
Fix displaystate (r6344) regression in blizzard

Testcase:

qemu-system-arm -M n810 -kernel /dev/null -m 130

Without this patch, we get a segfault.

Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

Modified Paths:
--------------
    trunk/hw/blizzard.c
    trunk/hw/nseries.c

Modified: trunk/hw/blizzard.c
===================================================================
--- trunk/hw/blizzard.c	2009-02-09 16:50:00 UTC (rev 6576)
+++ trunk/hw/blizzard.c	2009-02-09 17:00:41 UTC (rev 6577)
@@ -959,6 +959,10 @@
 
     s->fb = qemu_malloc(0x180000);
 
+    s->state = graphic_console_init(blizzard_update_display,
+                                 blizzard_invalidate_display,
+                                 blizzard_screen_dump, NULL, s);
+
     switch (ds_get_bits_per_pixel(s->state)) {
     case 0:
         s->line_fn_tab[0] = s->line_fn_tab[1] =
@@ -991,9 +995,5 @@
 
     blizzard_reset(s);
 
-    s->state = graphic_console_init(blizzard_update_display,
-                                 blizzard_invalidate_display,
-                                 blizzard_screen_dump, NULL, s);
-
     return s;
 }

Modified: trunk/hw/nseries.c
===================================================================
--- trunk/hw/nseries.c	2009-02-09 16:50:00 UTC (rev 6576)
+++ trunk/hw/nseries.c	2009-02-09 17:00:41 UTC (rev 6577)
@@ -1273,7 +1273,7 @@
     struct n800_s *s = (struct n800_s *) qemu_mallocz(sizeof(*s));
     int sdram_size = binfo->ram_size;
     int onenandram_size = 0x00010000;
-    DisplayState *ds = get_displaystate();
+    DisplayState *ds;
 
     if (ram_size < sdram_size + onenandram_size + OMAP242X_SRAM_SIZE) {
         fprintf(stderr, "This architecture uses %i bytes of memory\n",
@@ -1361,6 +1361,7 @@
     /* FIXME: We shouldn't really be doing this here.  The LCD controller
        will set the size once configured, so this just sets an initial
        size until the guest activates the display.  */
+    ds = get_displaystate();
     ds->surface = qemu_resize_displaysurface(ds->surface, 800, 480, 32, 4 * 800);
     dpy_resize(ds);
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-02-09 17:00 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-09 17:00 [Qemu-devel] [6577] Fix displaystate (r6344) regression in blizzard Aurelien Jarno

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).