summaryrefslogtreecommitdiffstats
path: root/arch/mips64/mm/init.c
diff options
context:
space:
mode:
authorKanoj Sarcar <kanoj@engr.sgi.com>2000-07-24 23:51:40 +0000
committerKanoj Sarcar <kanoj@engr.sgi.com>2000-07-24 23:51:40 +0000
commit036b956de28a83b793d7182bf104e7d0b44862eb (patch)
treedd2d24d724691342366344f523555f1cce62233b /arch/mips64/mm/init.c
parent5c61649a624af1ba36e12a2dd5a8a5f45b26f898 (diff)
Name change: the generic call flush_cache_all() does not do anything
anymore. All the flush_cache_all() calls in MIPS code is changed to call flush_cache_l1(), and ends up flushing the L1 i/d caches.
Diffstat (limited to 'arch/mips64/mm/init.c')
-rw-r--r--arch/mips64/mm/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips64/mm/init.c b/arch/mips64/mm/init.c
index c518f96b4..223ca3e5e 100644
--- a/arch/mips64/mm/init.c
+++ b/arch/mips64/mm/init.c
@@ -200,7 +200,7 @@ int do_check_pgt_cache(int low, int high)
asmlinkage int sys_cacheflush(void *addr, int bytes, int cache)
{
/* XXX Just get it working for now... */
- flush_cache_all();
+ flush_cache_l1();
return 0;
}