Symbol: text_poke_addr
arch/powerpc/lib/code-patching.c
237
unsigned long text_poke_addr;
arch/powerpc/lib/code-patching.c
245
text_poke_addr = __this_cpu_read(cpu_patching_context.addr);
arch/powerpc/lib/code-patching.c
246
patch_addr = (u32 *)(text_poke_addr + offset_in_page(addr));
arch/powerpc/lib/code-patching.c
248
pte = get_locked_pte(patching_mm, text_poke_addr, &ptl);
arch/powerpc/lib/code-patching.c
252
__set_pte_at(patching_mm, text_poke_addr, pte, pfn_pte(pfn, PAGE_KERNEL), 0);
arch/powerpc/lib/code-patching.c
267
pte_clear(patching_mm, text_poke_addr, pte);
arch/powerpc/lib/code-patching.c
272
local_flush_tlb_page_psize(patching_mm, text_poke_addr, mmu_virtual_psize);
arch/powerpc/lib/code-patching.c
283
unsigned long text_poke_addr;
arch/powerpc/lib/code-patching.c
287
text_poke_addr = (unsigned long)__this_cpu_read(cpu_patching_context.addr) & PAGE_MASK;
arch/powerpc/lib/code-patching.c
288
patch_addr = (u32 *)(text_poke_addr + offset_in_page(addr));
arch/powerpc/lib/code-patching.c
291
__set_pte_at(&init_mm, text_poke_addr, pte, pfn_pte(pfn, PAGE_KERNEL), 0);
arch/powerpc/lib/code-patching.c
298
pte_clear(&init_mm, text_poke_addr, pte);
arch/powerpc/lib/code-patching.c
299
flush_tlb_kernel_range(text_poke_addr, text_poke_addr + PAGE_SIZE);
arch/powerpc/lib/code-patching.c
424
unsigned long text_poke_addr;
arch/powerpc/lib/code-patching.c
431
text_poke_addr = __this_cpu_read(cpu_patching_context.addr);
arch/powerpc/lib/code-patching.c
432
patch_addr = (u32 *)(text_poke_addr + offset_in_page(addr));
arch/powerpc/lib/code-patching.c
434
pte = get_locked_pte(patching_mm, text_poke_addr, &ptl);
arch/powerpc/lib/code-patching.c
438
__set_pte_at(patching_mm, text_poke_addr, pte, pfn_pte(pfn, PAGE_KERNEL), 0);
arch/powerpc/lib/code-patching.c
455
pte_clear(patching_mm, text_poke_addr, pte);
arch/powerpc/lib/code-patching.c
460
local_flush_tlb_page_psize(patching_mm, text_poke_addr, mmu_virtual_psize);
arch/powerpc/lib/code-patching.c
474
unsigned long text_poke_addr;
arch/powerpc/lib/code-patching.c
479
text_poke_addr = (unsigned long)__this_cpu_read(cpu_patching_context.addr) & PAGE_MASK;
arch/powerpc/lib/code-patching.c
480
patch_addr = (u32 *)(text_poke_addr + offset_in_page(addr));
arch/powerpc/lib/code-patching.c
483
__set_pte_at(&init_mm, text_poke_addr, pte, pfn_pte(pfn, PAGE_KERNEL), 0);
arch/powerpc/lib/code-patching.c
490
pte_clear(&init_mm, text_poke_addr, pte);
arch/powerpc/lib/code-patching.c
491
flush_tlb_kernel_range(text_poke_addr, text_poke_addr + PAGE_SIZE);
arch/x86/kernel/alternative.c
2831
if (tpl_a < text_poke_addr(tpl_b))
arch/x86/kernel/alternative.c
2833
if (tpl_a > text_poke_addr(tpl_b))
arch/x86/kernel/alternative.c
2876
if (text_poke_addr(tpl) != ip)
arch/x86/kernel/alternative.c
2979
text_poke_array.vec[i].old = *(u8 *)text_poke_addr(&text_poke_array.vec[i]);
arch/x86/kernel/alternative.c
2980
text_poke(text_poke_addr(&text_poke_array.vec[i]), &int3, INT3_INSN_SIZE);
arch/x86/kernel/alternative.c
2996
text_poke_addr(&text_poke_array.vec[i]) + INT3_INSN_SIZE,
arch/x86/kernel/alternative.c
3005
text_poke(text_poke_addr(&text_poke_array.vec[i]) + INT3_INSN_SIZE,
arch/x86/kernel/alternative.c
3036
perf_event_text_poke(text_poke_addr(&text_poke_array.vec[i]), old, len, new, len);
arch/x86/kernel/alternative.c
3061
text_poke(text_poke_addr(&text_poke_array.vec[i]), &byte, INT3_INSN_SIZE);
arch/x86/kernel/alternative.c
3183
if (text_poke_addr(text_poke_array.vec + text_poke_array.nr_entries-1) > addr)