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-changelog

[Xen-changelog] [IA64] call setup_xen_feature()

# HG changeset patch
# User awilliam@xxxxxxxxxxx
# Node ID 15a04f99808333f839412c5dd4b5406d742940f4
# Parent  5cc367720223d06e5ec420da387218f46c9ed8e9
[IA64] call setup_xen_feature()

add setup_xen_features() call to setup_arch() in xenLinux/ia64
Now features.c is compiled into xenLinux/ia64 for xen_feature(),
but it is not initialized.
xenLinux/x86 calls xetup_xen_features() from setup_arch().

Signed-off-by: Isaku Yamahata <yamahata@xxxxxxxxxxxxx>

diff -r 5cc367720223 -r 15a04f998083 
linux-2.6-xen-sparse/arch/ia64/kernel/setup.c
--- a/linux-2.6-xen-sparse/arch/ia64/kernel/setup.c     Tue Apr 11 18:54:18 
2006 -0600
+++ b/linux-2.6-xen-sparse/arch/ia64/kernel/setup.c     Thu Apr 13 13:40:31 
2006 -0600
@@ -409,6 +409,10 @@ setup_arch (char **cmdline_p)
 setup_arch (char **cmdline_p)
 {
        unw_init();
+#ifdef CONFIG_XEN
+       if (running_on_xen)
+               setup_xen_features();
+#endif
 
        ia64_patch_vtop((u64) __start___vtop_patchlist, (u64) 
__end___vtop_patchlist);
 

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [IA64] call setup_xen_feature(), Xen patchbot -unstable <=