Lines Matching refs:start
67 void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
79 cpu_context(cpu, mm) & asid_mask, start, end);
82 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
87 start &= PAGE_MASK;
90 while (start < end) {
93 write_c0_entryhi(start | newpid);
94 start += PAGE_SIZE; /* BARRIER */
111 void local_flush_tlb_kernel_range(unsigned long start, unsigned long end)
116 printk("[tlbrange<%lu,0x%08lx,0x%08lx>]", start, end);
119 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
123 start &= PAGE_MASK;
127 while (start < end) {
130 write_c0_entryhi(start);
131 start += PAGE_SIZE; /* BARRIER */