Lines Matching refs:start
69 void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
81 cpu_context(cpu, mm) & asid_mask, start, end);
84 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
89 start &= PAGE_MASK;
92 while (start < end) {
95 write_c0_entryhi(start | newpid);
96 start += PAGE_SIZE; /* BARRIER */
113 void local_flush_tlb_kernel_range(unsigned long start, unsigned long end)
118 printk("[tlbrange<%lu,0x%08lx,0x%08lx>]", start, end);
121 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
125 start &= PAGE_MASK;
129 while (start < end) {
132 write_c0_entryhi(start);
133 start += PAGE_SIZE; /* BARRIER */