diff options
author | Srikar Dronamraju <srikar@linux.vnet.ibm.com> | 2012-05-08 07:11:26 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-05-08 08:17:25 -0400 |
commit | ec83db0f78cd44c3b586ec1c3a348d1a8a389797 (patch) | |
tree | 37d9a919b440b5e9d49ead8d2e180a8ea36ce417 /arch/Kconfig | |
parent | f3f096cfedf8113380c56fc855275cc75cd8cf55 (diff) |
tracing: Fix kconfig warning due to a typo
Commit f3f096cfe ("tracing: Provide trace events interface for
uprobes") throws a warning about unmet dependencies.
The exact warning message is:
warning: (UPROBE_EVENT) selects UPROBES which has unmet direct dependencies (UPROBE_EVENTS && PERF_EVENTS)
This is due to a typo in arch/Kconfig file. Fix similar typos in
the uprobetracer documentation.
Also add sample format of a uprobe event in the uprobetracer
documentation as suggested by Masami Hiramatsu.
Reported-by: Stephen Boyd <sboyd@codeaurora.org>
Reported-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: Anton Arapov <anton@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20120508111126.21004.38285.sendpatchset@srdronam.in.ibm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 0f8f968015e2..2880abf8a269 100644 --- a/arch/Kconfig +++ b/arch/Kconfig | |||
@@ -78,7 +78,7 @@ config OPTPROBES | |||
78 | 78 | ||
79 | config UPROBES | 79 | config UPROBES |
80 | bool "Transparent user-space probes (EXPERIMENTAL)" | 80 | bool "Transparent user-space probes (EXPERIMENTAL)" |
81 | depends on UPROBE_EVENTS && PERF_EVENTS | 81 | depends on UPROBE_EVENT && PERF_EVENTS |
82 | default n | 82 | default n |
83 | help | 83 | help |
84 | Uprobes is the user-space counterpart to kprobes: they | 84 | Uprobes is the user-space counterpart to kprobes: they |