diff -Naurp -X /home/jbarnes/dontdiff 080-ide-simulator-hacks.patch/init/main.c 081-cpu-startup-simulator-hacks.patch/init/main.c --- 080-ide-simulator-hacks.patch/init/main.c Tue Feb 17 19:57:17 2004 +++ 081-cpu-startup-simulator-hacks.patch/init/main.c Wed Feb 18 10:09:52 2004 @@ -39,6 +39,10 @@ #include #include #include +#ifdef CONFIG_IA64_SGI_SN_SIM +#include +#endif + #include #include @@ -179,6 +183,11 @@ void __init calibrate_delay(void) unsigned long ticks, loopbit; int lps_precision = LPS_PREC; +#ifdef CONFIG_IA64_SGI_SN_SIM + if (IS_RUNNING_ON_SIMULATOR() && smp_processor_id() > 0) + return; +#endif + loops_per_jiffy = (1<<12); printk("Calibrating delay loop... ");