commit | 900771a483ef28915a48066d7895d8252315607a | [log] [tgz] |
---|---|---|
author | Srikar Dronamraju <[email protected]> | Mon Mar 12 14:55:14 2012 +0530 |
committer | Ingo Molnar <[email protected]> | Tue Mar 13 06:22:20 2012 +0100 |
tree | 08941df642cc6bb61ef764b3344c87790c831145 | |
parent | 35aa621b5ab9d08767f7bc8d209b696df281d715 [diff] [blame] |
uprobes/core: Make macro names consistent Rename macros that refer to individual uprobe to start with UPROBE_ instead of UPROBES_. This is pure cleanup, no functional change intended. Signed-off-by: Srikar Dronamraju <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Ananth N Mavinakayanahalli <[email protected]> Cc: Jim Keniston <[email protected]> Cc: Linux-mm <[email protected]> Cc: Oleg Nesterov <[email protected]> Cc: Andi Kleen <[email protected]> Cc: Christoph Hellwig <[email protected]> Cc: Steven Rostedt <[email protected]> Cc: Arnaldo Carvalho de Melo <[email protected]> Cc: Masami Hiramatsu <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
diff --git a/include/linux/uprobes.h b/include/linux/uprobes.h index f85797e..838fb31 100644 --- a/include/linux/uprobes.h +++ b/include/linux/uprobes.h
@@ -35,10 +35,10 @@ /* flags that denote/change uprobes behaviour */ /* Have a copy of original instruction */ -#define UPROBES_COPY_INSN 0x1 +#define UPROBE_COPY_INSN 0x1 /* Dont run handlers when first register/ last unregister in progress*/ -#define UPROBES_RUN_HANDLER 0x2 +#define UPROBE_RUN_HANDLER 0x2 struct uprobe_consumer { int (*handler)(struct uprobe_consumer *self, struct pt_regs *regs);