Searched refs:text_poke_addr (Results 1 – 2 of 2) sorted by relevance
/linux-6.6.21/arch/powerpc/lib/ |
D | code-patching.c | 60 static int map_patch_area(void *addr, unsigned long text_poke_addr); 239 static int map_patch_area(void *addr, unsigned long text_poke_addr) in map_patch_area() argument 243 return map_kernel_page(text_poke_addr, (pfn << PAGE_SHIFT), PAGE_KERNEL); in map_patch_area() 285 unsigned long text_poke_addr; in __do_patch_instruction_mm() local 293 text_poke_addr = __this_cpu_read(cpu_patching_context.addr); in __do_patch_instruction_mm() 294 patch_addr = (u32 *)(text_poke_addr + offset_in_page(addr)); in __do_patch_instruction_mm() 296 pte = get_locked_pte(patching_mm, text_poke_addr, &ptl); in __do_patch_instruction_mm() 300 __set_pte_at(patching_mm, text_poke_addr, pte, pfn_pte(pfn, PAGE_KERNEL), 0); in __do_patch_instruction_mm() 319 pte_clear(patching_mm, text_poke_addr, pte); in __do_patch_instruction_mm() 324 local_flush_tlb_page_psize(patching_mm, text_poke_addr, mmu_virtual_psize); in __do_patch_instruction_mm() [all …]
|
/linux-6.6.21/arch/x86/kernel/ |
D | alternative.c | 2062 static __always_inline void *text_poke_addr(struct text_poke_loc *tp) in text_poke_addr() function 2071 if (key < text_poke_addr(tp)) in patch_cmp() 2073 if (key > text_poke_addr(tp)) in patch_cmp() 2118 if (text_poke_addr(tp) != ip) in poke_int3_handler() 2222 tp[i].old = *(u8 *)text_poke_addr(&tp[i]); in text_poke_bp_batch() 2223 text_poke(text_poke_addr(&tp[i]), &int3, INT3_INSN_SIZE); in text_poke_bp_batch() 2239 text_poke_addr(&tp[i]) + INT3_INSN_SIZE, in text_poke_bp_batch() 2248 text_poke(text_poke_addr(&tp[i]) + INT3_INSN_SIZE, in text_poke_bp_batch() 2279 perf_event_text_poke(text_poke_addr(&tp[i]), old, len, new, len); in text_poke_bp_batch() 2304 text_poke(text_poke_addr(&tp[i]), &byte, INT3_INSN_SIZE); in text_poke_bp_batch() [all …]
|