WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-ppc-devel

[XenPPC] [pushed] [ppc] use panic()

changeset:   9956:392b622c462327f6a5cab6f26635a2292bb4867d
user:        jimix@xxxxxxxxxxxxxxxxxxxxx
date:        Thu Apr 27 14:37:58 2006 -0400
files:       xen/arch/ppc/setup.c
description:
[ppc] use panic()


diff -r ef9509966a21bbae75598c5984e915f33322fae9 -r 
392b622c462327f6a5cab6f26635a2292bb4867d xen/arch/ppc/setup.c
--- a/xen/arch/ppc/setup.c      Thu Apr 27 14:33:49 2006 -0400
+++ b/xen/arch/ppc/setup.c      Thu Apr 27 14:37:58 2006 -0400
@@ -184,13 +184,11 @@ static void __init __start_xen(multiboot
 
     /* Check that we have at least one Multiboot module. */
     if (!(mbi->flags & MBI_MODULES) || (mbi->mods_count == 0)) {
-        printk("FATAL ERROR: Require at least one Multiboot module.\n");
-        for ( ; ; ) ;
+        panic("FATAL ERROR: Require at least one Multiboot module.\n");
     }
 
     if (!(mbi->flags & MBI_MEMMAP)) {
-        printk("FATAL ERROR: Bootloader provided no memory information.\n");
-        for ( ; ; ) ;
+        panic("FATAL ERROR: Bootloader provided no memory information.\n");
     }
 
     /* mark the begining of images */



_______________________________________________
Xen-ppc-devel mailing list
Xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ppc-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [XenPPC] [pushed] [ppc] use panic(), jimix <=