Displaying 2 results from an estimated 2 matches for "late_setup_arch".
2006 Aug 08
0
[PATCH] fix ia64 per cpu setup ordering
.../xensetup.c
--- a/xen/arch/ia64/xen/xensetup.c Tue Aug 08 09:26:10 2006 -0600
+++ b/xen/arch/ia64/xen/xensetup.c Tue Aug 08 12:18:04 2006 -0600
@@ -423,13 +423,14 @@ void start_kernel(void)
(xenheap_phys_end-__pa(heap_start)) >> 20,
(xenheap_phys_end-__pa(heap_start)) >> 10);
+ late_setup_arch(&cmdline);
+
scheduler_init();
idle_vcpu[0] = (struct vcpu*) ia64_r13;
idle_domain = domain_create(IDLE_DOMAIN_ID);
if ( (idle_domain == NULL) || (alloc_vcpu(idle_domain, 0, 0) ==
NULL) )
BUG();
- late_setup_arch(&cmdline);
alloc_dom_xen_and_dom_io();...
2006 Sep 21
0
[PATCH] Move initialize_keytable declaration to keyhandler.h
...@@ int find_max_pfn (unsigned long, unsigne
int find_max_pfn (unsigned long, unsigned long, void *);
/* FIXME: which header these declarations should be there ? */
-extern void initialize_keytable(void);
extern long is_platform_hp_ski(void);
extern void early_setup_arch(char **);
extern void late_setup_arch(char **);
diff -r 010ae57673c7 -r 47e5627d8558 xen/arch/powerpc/setup.c
--- a/xen/arch/powerpc/setup.c Wed Sep 20 21:47:29 2006 -0400
+++ b/xen/arch/powerpc/setup.c Thu Sep 21 00:52:18 2006 -0400
@@ -87,9 +87,6 @@ struct ns16550_defaults ns16550;
extern char __per_cpu_start[], __per_cpu_data_end...