patch-2.4.0-test9 linux/include/asm-arm/pgalloc.h

Next file: linux/include/asm-arm/pgtable.h
Previous file: linux/include/asm-arm/parport.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.4.0-test8/linux/include/asm-arm/pgalloc.h linux/include/asm-arm/pgalloc.h
@@ -1,5 +1,11 @@
 /*
- * linux/include/asm-arm/pgalloc.h
+ *  linux/include/asm-arm/pgalloc.h
+ *
+ *  Copyright (C) 2000 Russell King
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
  */
 #ifndef _ASMARM_PGALLOC_H
 #define _ASMARM_PGALLOC_H
@@ -49,7 +55,7 @@
 	if ((ret = pgd_quicklist) != NULL) {
 		pgd_quicklist = (unsigned long *)__pgd_next(ret);
 		ret[1] = ret[2];
-		clean_cache_area(ret + 1, 4);
+		clean_dcache_entry(ret + 1);
 		pgtable_cache_size--;
 	}
 	return (pgd_t *)ret;
@@ -76,7 +82,7 @@
 	if((ret = pte_quicklist) != NULL) {
 		pte_quicklist = (unsigned long *)__pte_next(ret);
 		ret[0] = ret[1];
-		clean_cache_area(ret, 4);
+		clean_dcache_entry(ret);
 		pgtable_cache_size--;
 	}
 	return (pte_t *)ret;

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)