Searched refs:repeat_instr (Results 1 – 2 of 2) sorted by relevance
/linux/arch/powerpc/lib/ |
H A D | code-patching.c | 437 static int __patch_instructions(u32 *patch_addr, u32 *code, size_t len, bool repeat_instr) in __patch_instructions() argument 443 if (repeat_instr) { in __patch_instructions() 468 static int __do_patch_instructions_mm(u32 *addr, u32 *code, size_t len, bool repeat_instr) in __do_patch_instructions_mm() argument 497 err = __patch_instructions(patch_addr, code, len, repeat_instr); in __do_patch_instructions_mm() 519 static int __do_patch_instructions(u32 *addr, u32 *code, size_t len, bool repeat_instr) in __do_patch_instructions() argument 536 err = __patch_instructions(patch_addr, code, len, repeat_instr); in __do_patch_instructions() 547 * If repeat_instr is true, the same instruction is filled for 550 int patch_instructions(u32 *addr, u32 *code, size_t len, bool repeat_instr) in patch_instructions() argument 561 err = __do_patch_instructions_mm(addr, code, plen, repeat_instr); in patch_instructions() 563 err = __do_patch_instructions(addr, code, plen, repeat_instr); in patch_instructions() [all...] |
/linux/arch/powerpc/include/asm/ |
H A D | text-patching.h | 77 int patch_instructions(u32 *addr, u32 *code, size_t len, bool repeat_instr);
|