[EMAIL PROTECTED] wrote..
> linux/arch/i386/kernel/setup.c:
> Isn't here an "else" or "break" missing? Otherwise
> ``x86_cap_flags[16] = "pat"'' is always the case
Good spotting!
There should be an else there, as there is in 2.4
Regards,
Dave.
--- setup.c~ Mon Oct 9 20:18:59 2000
+++ setup.c Mon Oct 9 20:19:15 2000
@@ -1192,7 +1192,8 @@
x86_cap_flags[10] = "sep";
if (c->x86 < 6)
x86_cap_flags[16] = "fcmov";
- x86_cap_flags[16] = "pat";
+ else
+ x86_cap_flags[16] = "pat";
x86_cap_flags[22] = "mmxext";
x86_cap_flags[24] = "fxsr";
x86_cap_flags[30] = "3dnowext";
--
| Dave Jones <[EMAIL PROTECTED]> http://www.suse.de/~davej
| SuSE Labs
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/