Update of /cvsroot/linux-mips/linux/arch/mips64/mm
In directory usw-pr-cvs1:/tmp/cvs-serv28978/arch/mips64/mm
Modified Files:
andes.c r4xx0.c
Log Message:
get_new_cpu_mmu_context is get_cpu_mmu_context now.
Index: andes.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips64/mm/andes.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- andes.c 2001/11/06 00:30:43 1.6
+++ andes.c 2001/11/19 17:57:38 1.7
@@ -170,7 +170,7 @@
printk("[tlbmm<%d>]", mm->context);
#endif
__save_and_cli(flags);
- get_new_cpu_mmu_context(mm, smp_processor_id());
+ get_new_mmu_context(mm, smp_processor_id());
if(mm == current->mm)
set_entryhi(CPU_CONTEXT(smp_processor_id(), mm) & 0xff);
__restore_flags(flags);
@@ -214,7 +214,7 @@
}
set_entryhi(oldpid);
} else {
- get_new_cpu_mmu_context(mm, smp_processor_id());
+ get_new_mmu_context(mm, smp_processor_id());
if(mm == current->mm)
set_entryhi(CPU_CONTEXT(smp_processor_id(), mm) &
0xff);
Index: r4xx0.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips64/mm/r4xx0.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- r4xx0.c 2001/11/06 00:30:43 1.7
+++ r4xx0.c 2001/11/19 17:57:38 1.8
@@ -1900,7 +1900,7 @@
printk("[tlbmm<%d>]", mm->context);
#endif
__save_and_cli(flags);
- get_new_cpu_mmu_context(mm, smp_processor_id());
+ get_new_mmu_context(mm, smp_processor_id());
if(mm == current->mm)
set_entryhi(CPU_CONTEXT(smp_processor_id(), mm) & 0xff);
__restore_flags(flags);
@@ -1948,7 +1948,7 @@
}
set_entryhi(oldpid);
} else {
- get_new_cpu_mmu_context(mm, smp_processor_id());
+ get_new_mmu_context(mm, smp_processor_id());
if(mm == current->mm)
set_entryhi(CPU_CONTEXT(smp_processor_id(),
mm) & 0xff);
|