linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] uprobes: probe definiton can only start with 'p' and '-'
@ 2012-09-11 15:37 Sebastian Andrzej Siewior
  2012-09-11 15:37 ` [PATCH 2/2] uprobes: add global breakpoints Sebastian Andrzej Siewior
  0 siblings, 1 reply; 5+ messages in thread
From: Sebastian Andrzej Siewior @ 2012-09-11 15:37 UTC (permalink / raw)
  To: srikar
  Cc: Ingo Molnar, Peter Zijlstra, Ananth N Mavinakayanahalli,
	Roland McGrath, linux-kernel, Oleg Nesterov,
	Sebastian Andrzej Siewior

'r' and ' ' is not supported according to current code.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
 kernel/trace/trace_uprobe.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/trace/trace_uprobe.c b/kernel/trace/trace_uprobe.c
index 03003cd..f3c3811 100644
--- a/kernel/trace/trace_uprobe.c
+++ b/kernel/trace/trace_uprobe.c
@@ -189,7 +189,7 @@ static int create_trace_uprobe(int argc, char **argv)
 	if (argv[0][0] == '-')
 		is_delete = true;
 	else if (argv[0][0] != 'p') {
-		pr_info("Probe definition must be started with 'p', 'r' or" " '-'.\n");
+		pr_info("Probe definition must be started with 'p' or '-'.\n");
 		return -EINVAL;
 	}
 
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-09-12 18:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-11 15:37 [PATCH 1/2] uprobes: probe definiton can only start with 'p' and '-' Sebastian Andrzej Siewior
2012-09-11 15:37 ` [PATCH 2/2] uprobes: add global breakpoints Sebastian Andrzej Siewior
2012-09-12 14:30   ` Oleg Nesterov
2012-09-12 14:29     ` Peter Zijlstra
2012-09-12 18:12     ` Oleg Nesterov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).