patch_instruction   30 arch/powerpc/include/asm/code-patching.h int patch_instruction(unsigned int *addr, unsigned int instr);
patch_instruction   40 arch/powerpc/include/asm/code-patching.h 	return patch_instruction((unsigned int *)patch_site_addr(site), instr);
patch_instruction   51 arch/powerpc/include/asm/code-patching.h 	return patch_instruction(addr, (*addr & ~clr) | set);
patch_instruction   47 arch/powerpc/kernel/crash_dump.c 	patch_instruction(p, PPC_INST_NOP);
patch_instruction   40 arch/powerpc/kernel/epapr_paravirt.c 		patch_instruction(epapr_hypercall_start + i, inst);
patch_instruction   42 arch/powerpc/kernel/epapr_paravirt.c 		patch_instruction(epapr_ev_idle_start + i, inst);
patch_instruction   18 arch/powerpc/kernel/jump_label.c 		patch_instruction(addr, PPC_INST_NOP);
patch_instruction  427 arch/powerpc/kernel/kgdb.c 	err = patch_instruction(addr, BREAK_INSTR);
patch_instruction  442 arch/powerpc/kernel/kgdb.c 	err = patch_instruction(addr, instr);
patch_instruction  141 arch/powerpc/kernel/kprobes.c 	patch_instruction(p->addr, BREAKPOINT_INSTRUCTION);
patch_instruction  147 arch/powerpc/kernel/kprobes.c 	patch_instruction(p->addr, p->opcode);
patch_instruction  150 arch/powerpc/kernel/optprobes.c 	patch_instruction(addr, PPC_INST_ADDIS | ___PPC_RT(4) |
patch_instruction  155 arch/powerpc/kernel/optprobes.c 	patch_instruction(addr, PPC_INST_ORI | ___PPC_RA(4) |
patch_instruction  166 arch/powerpc/kernel/optprobes.c 	patch_instruction(addr, PPC_INST_ADDIS | ___PPC_RT(3) |
patch_instruction  171 arch/powerpc/kernel/optprobes.c 	patch_instruction(addr, PPC_INST_ORI | ___PPC_RA(3) |
patch_instruction  176 arch/powerpc/kernel/optprobes.c 	patch_instruction(addr, PPC_INST_RLDICR | ___PPC_RA(3) |
patch_instruction  181 arch/powerpc/kernel/optprobes.c 	patch_instruction(addr, PPC_INST_ORIS | ___PPC_RA(3) |
patch_instruction  186 arch/powerpc/kernel/optprobes.c 	patch_instruction(addr, PPC_INST_ORI | ___PPC_RA(3) |
patch_instruction  233 arch/powerpc/kernel/optprobes.c 		rc = patch_instruction(buff + i, *(optprobe_template_entry + i));
patch_instruction  265 arch/powerpc/kernel/optprobes.c 	patch_instruction(buff + TMPL_CALL_HDLR_IDX, branch_op_callback);
patch_instruction  266 arch/powerpc/kernel/optprobes.c 	patch_instruction(buff + TMPL_EMULATE_IDX, branch_emulate_step);
patch_instruction  318 arch/powerpc/kernel/optprobes.c 		patch_instruction(op->kp.addr,
patch_instruction   89 arch/powerpc/kernel/setup_32.c 	patch_instruction(addr, insn);	/* replace b by bne cr0 */
patch_instruction   81 arch/powerpc/kernel/trace/ftrace.c 	if (patch_instruction((unsigned int *)ip, new))
patch_instruction  207 arch/powerpc/kernel/trace/ftrace.c 	if (patch_instruction((unsigned int *)ip, pop)) {
patch_instruction  279 arch/powerpc/kernel/trace/ftrace.c 	if (patch_instruction((unsigned int *)ip, op))
patch_instruction  419 arch/powerpc/kernel/trace/ftrace.c 	if (patch_instruction((unsigned int *)ip, PPC_INST_NOP)) {
patch_instruction  606 arch/powerpc/kernel/trace/ftrace.c 	if (patch_instruction((unsigned int *)ip, op))
patch_instruction  195 arch/powerpc/lib/code-patching.c NOKPROBE_SYMBOL(patch_instruction);
patch_instruction  199 arch/powerpc/lib/code-patching.c 	return patch_instruction(addr, create_branch(addr, target, flags));
patch_instruction  487 arch/powerpc/lib/code-patching.c 	patch_instruction(iptr, create_branch(iptr, dest, BRANCH_SET_LINK));
patch_instruction  578 arch/powerpc/lib/code-patching.c 	patch_instruction(q, translate_branch(q, p));
patch_instruction  586 arch/powerpc/lib/code-patching.c 	patch_instruction(q, translate_branch(q, p));
patch_instruction  596 arch/powerpc/lib/code-patching.c 	patch_instruction(q, translate_branch(q, p));
patch_instruction  606 arch/powerpc/lib/code-patching.c 	patch_instruction(q, translate_branch(q, p));
patch_instruction  615 arch/powerpc/lib/code-patching.c 	patch_instruction(q, translate_branch(q, p));
patch_instruction  625 arch/powerpc/lib/code-patching.c 	patch_instruction(p, create_cond_branch(p, addr, 0));
patch_instruction  628 arch/powerpc/lib/code-patching.c 	patch_instruction(q, translate_branch(q, p));
patch_instruction  634 arch/powerpc/lib/code-patching.c 	patch_instruction(p, create_cond_branch(p, addr, 0xFFFFFFFC));
patch_instruction  636 arch/powerpc/lib/code-patching.c 	patch_instruction(q, translate_branch(q, p));
patch_instruction  644 arch/powerpc/lib/code-patching.c 	patch_instruction(p, create_cond_branch(p, addr, 0xFFFFFFFC));
patch_instruction  646 arch/powerpc/lib/code-patching.c 	patch_instruction(q, translate_branch(q, p));
patch_instruction  654 arch/powerpc/lib/code-patching.c 	patch_instruction(p, create_cond_branch(p, addr, BRANCH_SET_LINK));
patch_instruction  656 arch/powerpc/lib/code-patching.c 	patch_instruction(q, translate_branch(q, p));
patch_instruction  663 arch/powerpc/lib/code-patching.c 	patch_instruction(p, create_cond_branch(p, addr, 0));
patch_instruction  665 arch/powerpc/lib/code-patching.c 	patch_instruction(q, translate_branch(q, p));
patch_instruction  148 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest, instrs[0]);
patch_instruction  154 arch/powerpc/lib/feature-fixups.c 			patch_instruction(dest + 1, instrs[1]);
patch_instruction  156 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest + 2, instrs[2]);
patch_instruction  209 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest, instrs[0]);
patch_instruction  210 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest + 1, instrs[1]);
patch_instruction  211 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest + 2, instrs[2]);
patch_instruction  212 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest + 3, instrs[3]);
patch_instruction  213 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest + 4, instrs[4]);
patch_instruction  214 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest + 5, instrs[5]);
patch_instruction  262 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest, instrs[0]);
patch_instruction  263 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest + 1, instrs[1]);
patch_instruction  264 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest + 2, instrs[2]);
patch_instruction  297 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest, instr);
patch_instruction  340 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest, instr[0]);
patch_instruction  341 arch/powerpc/lib/feature-fixups.c 		patch_instruction(dest + 1, instr[1]);
patch_instruction  355 arch/powerpc/lib/feature-fixups.c 		patch_instruction(start, PPC_INST_NOP);
patch_instruction   85 arch/powerpc/platforms/86xx/mpc86xx_smp.c 	patch_instruction(vector, save_vector);
patch_instruction  831 arch/powerpc/platforms/powermac/smp.c 	patch_instruction(vector, save_vector);
patch_instruction  918 arch/powerpc/xmon/xmon.c 		if (patch_instruction((unsigned int *)bp->address,
patch_instruction  956 arch/powerpc/xmon/xmon.c 		    && patch_instruction(