patch-2.4.19 linux-2.4.19/arch/alpha/kernel/smp.c
Next file: linux-2.4.19/arch/alpha/kernel/srm_env.c
Previous file: linux-2.4.19/arch/alpha/kernel/signal.c
Back to the patch index
Back to the overall index
- Lines: 34
- Date:
Fri Aug 2 17:39:42 2002
- Orig file:
linux-2.4.18/arch/alpha/kernel/smp.c
- Orig date:
Fri Dec 21 09:41:53 2001
diff -urN linux-2.4.18/arch/alpha/kernel/smp.c linux-2.4.19/arch/alpha/kernel/smp.c
@@ -184,9 +184,23 @@
*/
wait_boot_cpu_to_stop(cpuid);
mb();
+ try_again:
calibrate_delay();
smp_store_cpu_info(cpuid);
+
+ {
+#define LPJ(c) ((long)cpu_data[c].loops_per_jiffy)
+ static int tries = 3;
+ long diff = LPJ(boot_cpuid) - LPJ(cpuid);
+ if (diff < 0) diff = -diff;
+
+ if (diff > LPJ(boot_cpuid)/10 && --tries) {
+ printk("Bogus BogoMIPS for cpu %d - retrying...\n", cpuid);
+ goto try_again;
+ }
+ }
+
/*
* Allow master to continue only after we written
* the loops_per_jiffy.
@@ -1065,7 +1079,8 @@
}
void
-flush_icache_page(struct vm_area_struct *vma, struct page *page)
+flush_icache_user_range(struct vm_area_struct *vma, struct page *page,
+ unsigned long addr, int len)
{
struct mm_struct *mm = vma->vm_mm;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)