[PATCH] Typo in write allocation enabling code

Petru Paler (ppetru@coltronix.com)
Wed, 22 Dec 1999 15:32:01 +0200


There seems to be a typo in the K6-2 write allocation code which prevents
its enabling.

-Petru

--- setup.c.original Wed Dec 22 15:01:51 1999
+++ setup.c Wed Dec 22 15:22:17 1999
@@ -850,7 +850,7 @@
if(mbytes>4092)
mbytes=4092;
rdmsr(0xC0000082, l, h);
- if((l&0xFFFF0000)==0)
+ if((l&0x0000FFFF)==0)
{
l=((mbytes>>2)<<22)|(1<<16);
save_flags(flags);

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/