Lines Matching refs:fixmap
26 static void __kprobes *patch_map(void *addr, int fixmap, unsigned long *flags, in patch_map() argument
42 set_fixmap(fixmap, page_to_phys(page)); in patch_map()
45 return (void *) (__fix_to_virt(fixmap) + (uintaddr & ~PAGE_MASK)); in patch_map()
48 static void __kprobes patch_unmap(int fixmap, unsigned long *flags) in patch_unmap() argument
50 clear_fixmap(fixmap); in patch_unmap()
60 u32 *p, *fixmap; in __patch_text_multiple() local
68 p = fixmap = patch_map(addr, FIX_TEXT_POKE0, &flags, &mapped); in __patch_text_multiple()
79 flush_kernel_dcache_range_asm((unsigned long)fixmap, in __patch_text_multiple()
81 flush_tlb_kernel_range((unsigned long)fixmap, in __patch_text_multiple()
85 p = fixmap = patch_map(addr, FIX_TEXT_POKE0, &flags, in __patch_text_multiple()
90 flush_kernel_dcache_range_asm((unsigned long)fixmap, (unsigned long)p); in __patch_text_multiple()
91 flush_tlb_kernel_range((unsigned long)fixmap, (unsigned long)p); in __patch_text_multiple()