From: James S. <jsi...@us...> - 2001-11-19 17:57:42
|
Update of /cvsroot/linux-mips/linux/include/asm-mips In directory usw-pr-cvs1:/tmp/cvs-serv28978/include/asm-mips Modified Files: mmu_context.h Log Message: get_new_cpu_mmu_context is get_cpu_mmu_context now. Index: mmu_context.h =================================================================== RCS file: /cvsroot/linux-mips/linux/include/asm-mips/mmu_context.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- mmu_context.h 2001/10/31 18:26:52 1.6 +++ mmu_context.h 2001/11/19 17:57:38 1.7 @@ -61,7 +61,7 @@ #define ASID_FIRST_VERSION ((unsigned long)(~ASID_VERSION_MASK) + 1) static inline void -get_new_cpu_mmu_context(struct mm_struct *mm, unsigned long cpu) +get_new_mmu_context(struct mm_struct *mm, unsigned long cpu) { unsigned long asid = ASID_CACHE(cpu); @@ -101,7 +101,7 @@ { /* Check if our ASID is of an older version and thus invalid */ if ((CPU_CONTEXT(cpu, next) ^ ASID_CACHE(cpu)) & ASID_VERSION_MASK) - get_new_cpu_mmu_context(next, cpu); + get_new_mmu_context(next, cpu); set_entryhi(CPU_CONTEXT(cpu, next)); TLBMISS_HANDLER_SETUP_PGD(next->pgd); @@ -127,7 +127,7 @@ activate_mm(struct mm_struct *prev, struct mm_struct *next) { /* Unconditionally get a new ASID. */ - get_new_cpu_mmu_context(next, smp_processor_id()); + get_new_mmu_context(next, smp_processor_id()); set_entryhi(CPU_CONTEXT(smp_processor_id(), next)); TLBMISS_HANDLER_SETUP_PGD(next->pgd); |