|
|
|
|
|
|
|
|
|
|
xen-ia64-devel
RE: [Xen-ia64-devel] WIP/RFC fixing Xen/ia64 on xen-unstable.hg
On Wed, 2006-08-23 at 10:06 +0800, Zhang, Xiantao wrote:
> Hi Alex,
> After more investigations, I think it should be caused by CSet11156.
> After removing that patch, seems XenU could be created successfully.
> You should be very familiar with that patch. So it should be fixed
> quickly by you :)
D'oh, I added transparent paravirtualization, but missed the dom0
only console setup. The patch below along with the previous one should
get us booting again. Thanks for you help narrowing this down Xiantao!
I'll clean these up and submit them to xen-devel. Thanks,
Alex
Signed-off-by: Alex Williamson <alex.williamson@xxxxxx>
---
diff -r 6a8204e4619d linux-2.6-xen-sparse/arch/ia64/dig/setup.c
--- a/linux-2.6-xen-sparse/arch/ia64/dig/setup.c Mon Aug 21 13:36:05
2006 +0100
+++ b/linux-2.6-xen-sparse/arch/ia64/dig/setup.c Tue Aug 22 20:39:48
2006 -0600
@@ -69,7 +69,7 @@ dig_setup (char **cmdline_p)
screen_info.orig_video_isVGA = 1; /* XXX fake */
screen_info.orig_video_ega_bx = 3; /* XXX fake */
#ifdef CONFIG_XEN
- if (!is_running_on_xen())
+ if (!is_running_on_xen() || !is_initial_xendomain())
return;
if (xen_start_info->console.dom0.info_size >=
_______________________________________________
Xen-ia64-devel mailing list
Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ia64-devel
|
|
|
|
|