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]timer init must occur before serial_init_posirw()

To: xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
Subject: [XenPPC] [pushed]timer init must occur before serial_init_posirw()
From: jimix@xxxxxxxxxxxxxx
Date: Tue, 28 Mar 2006 10:17:13 -0500
Delivery-date: Tue, 28 Mar 2006 15:16:46 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-ppc-devel-request@lists.xensource.com?subject=help>
List-id: Xen PPC development <xen-ppc-devel.lists.xensource.com>
List-post: <mailto:xen-ppc-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ppc-devel>, <mailto:xen-ppc-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ppc-devel>, <mailto:xen-ppc-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-ppc-devel-bounces@xxxxxxxxxxxxxxxxxxx
changeset:   9660:b7c9d7c30cf4
tag:         tip
user:        jimix@xxxxxxxxxxxxxxxxxxxxx
date:        Tue Mar 28 10:16:38 2006 -0500
summary:     timer init must occur before serial_init_posirw()

diff -r 53d54257e98d -r b7c9d7c30cf4 xen/arch/ppc/setup.c
--- a/xen/arch/ppc/setup.c      Tue Mar 28 10:15:19 2006 -0500
+++ b/xen/arch/ppc/setup.c      Tue Mar 28 10:16:38 2006 -0500
@@ -127,12 +127,12 @@ static void __init start_of_day(void)
     cpu_set(0, cpu_sibling_map[0]);
 
     initialize_keytable();
+    timer_init();
 #ifdef NOT_SETUP_FOR_EXTERNALS_YET_IF_EVER
     /* in PPC we let dom0 init the interrupt controller since the
      * detection can be onerous */
     serial_init_postirq();
 #endif
-    timer_init();
     do_initcalls();
     schedulers_start();
 }



_______________________________________________
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]timer init must occur before serial_init_posirw(), jimix <=