From: James S. <jsi...@us...> - 2001-11-19 17:57:42
|
Update of /cvsroot/linux-mips/linux/arch/mips/mm In directory usw-pr-cvs1:/tmp/cvs-serv28978/arch/mips/mm Modified Files: tlb-r3k.c tlb-r4k.c tlb-sb1.c Log Message: get_new_cpu_mmu_context is get_cpu_mmu_context now. Index: tlb-r3k.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/mm/tlb-r3k.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tlb-r3k.c 2001/10/26 16:10:17 1.4 +++ tlb-r3k.c 2001/11/19 17:57:38 1.5 @@ -66,7 +66,7 @@ printk("[tlbmm<%lu>]", (unsigned long) 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->active_mm) set_entryhi(mm->context & 0xfc0); restore_flags(flags); @@ -108,7 +108,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->active_mm) set_entryhi(mm->context & 0xfc0); } Index: tlb-r4k.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/mm/tlb-r4k.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- tlb-r4k.c 2001/11/16 00:25:59 1.5 +++ tlb-r4k.c 2001/11/19 17:57:38 1.6 @@ -80,7 +80,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->active_mm) set_entryhi(mm->context & 0xff); __restore_flags(flags); @@ -130,7 +130,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->active_mm) set_entryhi(mm->context & 0xff); } Index: tlb-sb1.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/mm/tlb-sb1.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- tlb-sb1.c 2001/11/07 17:29:03 1.1 +++ tlb-sb1.c 2001/11/19 17:57:38 1.2 @@ -189,7 +189,7 @@ } set_entryhi(oldpid); } else { - get_new_mmu_context(mm); + get_new_mmu_context(mm, smp_processor_id()); if (mm == current->active_mm) set_entryhi(CPU_CONTEXT(cpu, mm) & 0xff); } @@ -242,7 +242,7 @@ __save_and_cli(flags); cpu = smp_processor_id(); if (CPU_CONTEXT(cpu, mm) != 0) { - get_new_mmu_context(mm); + get_new_mmu_context(mm, smp_processor_id()); if (mm == current->active_mm) { set_entryhi(CPU_CONTEXT(cpu, mm) & 0xff); } |