On Fri, 2011-11-18 at 16:38 +0530, Srikar Dronamraju wrote: > +/** > + * is_bkpt_insn - check if instruction is breakpoint instruction. > + * @insn: instruction to be checked. > + * Default implementation of is_bkpt_insn > + * Returns true if @insn is a breakpoint instruction. > + */ > +bool __weak is_bkpt_insn(u8 *insn) > +{ > + return (insn[0] == UPROBES_BKPT_INSN); > } This seems wrong, UPROBES_BKPT_INSN basically defined to be of uprobe_opcode_t type, not u8. So: bool __weak is_bkpt_insn(uprobe_opcode_t *insn) { return *insn == UPROBE_BKPT_INSN; } seems like the right way to write this. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: <a href