Displaying 2 results from an estimated 2 matches for "initial_images_end".
2005 Aug 12
3
IA32E make failed in latest version 6117
Hi all,
I found this problem in the latest xen-unstable 6117.
I reported a bug #154 to track it.
The log====>
<...>
gcc -nostdinc -fno-builtin -fno-common -fno-strict-aliasing -iwithprefix
include -Wall -Werror -Wno-pointer-arith -pipe -
I/home/nightly/builds_xen_unstable/xen-3.0-hg-xen-unstable-6096-
20050812/xen/include -I/home/nightly/builds_xen_unstable/xen-3.0-hg-xen-
2007 Sep 08
4
[PATCH] Unified shutdown code
...itcalls(void)
#define EARLY_FAIL(f, a...) do { \
printk( f , ## a ); \
- for ( ; ; ) __asm__ __volatile__ ( "hlt" ); \
+ machine_restart(1); \
} while (0)
static unsigned long __initdata initial_images_start,
initial_images_end;
diff -r a53aaea4c698 -r a85c4081738a xen/arch/x86/shutdown.c
--- a/xen/arch/x86/shutdown.c Fri Sep 07 19:54:29 2007 +0100
+++ b/xen/arch/x86/shutdown.c Fri Sep 07 17:37:01 2007 -0700
@@ -29,6 +29,10 @@ static long no_idt[2];
static long no_idt[2];
static int reboot_mode;
+#define TEARDOWN_TYPE...