From: Andy P. <at...@us...> - 2001-09-01 12:19:52
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/mm In directory usw-pr-cvs1:/tmp/cvs-serv26247 Modified Files: pgalloc.c Log Message: fix the stupid pgtable->pgd_table cache size counter bug Index: pgalloc.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/mm/pgalloc.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- pgalloc.c 2001/08/31 11:50:57 1.6 +++ pgalloc.c 2001/09/01 12:19:47 1.7 @@ -36,7 +36,7 @@ if ((ret = pgd_quicklist) != NULL) { pgd_quicklist = (unsigned long *)(*ret); ret[0] = 0; - pgtable_cache_size--; + pgd_cache_size--; } return (pgd_t *)ret; } |