diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-04-18 17:39:16 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-04-18 17:39:16 +0000 |
commit | a79d4650269ccbf7d834e122e74d6caee0d0c49b (patch) | |
tree | 99cc41406ee3c19f8327de7babad95606cf48787 /sys | |
parent | 217a89e89b7c7020dfa32c4be7141ac104d48ddf (diff) |
Make sure we print crucial debug information before we panic.
Stolen from mpf@
ok mpf@, mickey@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 56d724079eb..61479795f5e 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.351 2006/03/24 12:17:03 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.352 2006/04/18 17:39:15 kettenis Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -1633,8 +1633,6 @@ identifycpu(struct cpu_info *ci) max = sizeof (i386_cpuid_cpus) / sizeof (i386_cpuid_cpus[0]); modif = (ci->ci_signature >> 12) & 3; family = (ci->ci_signature >> 8) & 15; - if (family < CPU_MINFAMILY) - panic("identifycpu: strange family value"); model = (ci->ci_signature >> 4) & 15; step = ci->ci_signature & 15; #ifdef CPUDEBUG @@ -1644,6 +1642,8 @@ identifycpu(struct cpu_info *ci) cpu_device, cpuid_level, cpu_cache_eax, cpu_cache_ebx, cpu_cache_ecx, cpu_cache_edx); #endif + if (family < CPU_MINFAMILY) + panic("identifycpu: strange family value"); for (i = 0; i < max; i++) { if (!strncmp(cpu_vendor, |