Messages in this thread Patch in this message |  | | Date | Wed, 11 Jun 2003 12:11:17 +0200 | | From | Boszormenyi Zoltan <> | | | Subject | Cyrix ARR problem in split MTRR code |
Hi,
I noticed a problem in the split MTRR code that is special casing
ARR #3 on Cyrix 6x86(MX) / MII CPUs. I wrote the code for the
original (monolithic) mtrr.c, but I don't have my old Cyrix 6x86MX
mainboard anymore. The problem is obvious though, one liner fix is
attached. Patrick Mochel should have been more careful. :-)
Best regards,
Zoltán Böszörményi
--- arch/i386/kernel/cpu/mtrr/main.c.old 2003-06-11 11:09:43.000000000 +0200
+++ arch/i386/kernel/cpu/mtrr/main.c 2003-06-11 12:03:48.000000000 +0200
@@ -64,7 +64,7 @@
static void set_mtrr(unsigned int reg, unsigned long base,
unsigned long size, mtrr_type type);
-static unsigned int arr3_protected;
+extern int arr3_protected;
void set_mtrr_ops(struct mtrr_ops * ops)
{ |  |