Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax/mm
In directory usw-pr-cvs1:/tmp/cvs-serv26873
Modified Files:
pgtable.h
Log Message:
One-liner: was reading wrong field in RPB for memory size
Index: pgtable.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/mm/pgtable.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pgtable.h 2001/01/24 00:07:42 1.4
+++ pgtable.h 2001/01/29 00:49:26 1.5
@@ -379,7 +379,7 @@
/* Memory sizing. You'll need to #include <asm/rpb.h> to get
the declaration of boot_rpb. */
-#define max_pfn (boot_rpb.l_max_pfn)
+#define max_pfn (boot_rpb.l_pfncnt)
#include <asm-generic/pgtable.h>
|