[PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-10-29 Thread Namhyung Kim
From: Namhyung Kim Enable to fetch other types of argument for the uprobes. IOW, we can access stack, memory, deref, bitfield and retval from uprobes now. The format for the argument types are same as kprobes (but @SYMBOL type is not supported for uprobes), i.e: @ADDR : Fetch memory at

[PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-10-29 Thread Namhyung Kim
From: Namhyung Kim namhyung@lge.com Enable to fetch other types of argument for the uprobes. IOW, we can access stack, memory, deref, bitfield and retval from uprobes now. The format for the argument types are same as kprobes (but @SYMBOL type is not supported for uprobes), i.e: @ADDR

Re: [PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-09-03 Thread Masami Hiramatsu
(2013/09/03 14:44), Namhyung Kim wrote: > From: Namhyung Kim > > Enable to fetch other types of argument for the uprobes. IOW, we can > access stack, memory, deref, bitfield and retval from uprobes now. > > The format for the argument types are same as kprobes (but @SYMBOL > type is not

Re: [PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-09-03 Thread Masami Hiramatsu
(2013/09/03 14:44), Namhyung Kim wrote: From: Namhyung Kim namhyung@lge.com Enable to fetch other types of argument for the uprobes. IOW, we can access stack, memory, deref, bitfield and retval from uprobes now. The format for the argument types are same as kprobes (but @SYMBOL type

[PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-09-02 Thread Namhyung Kim
From: Namhyung Kim Enable to fetch other types of argument for the uprobes. IOW, we can access stack, memory, deref, bitfield and retval from uprobes now. The format for the argument types are same as kprobes (but @SYMBOL type is not supported for uprobes), i.e: @ADDR : Fetch memory at

[PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-09-02 Thread Namhyung Kim
From: Namhyung Kim namhyung@lge.com Enable to fetch other types of argument for the uprobes. IOW, we can access stack, memory, deref, bitfield and retval from uprobes now. The format for the argument types are same as kprobes (but @SYMBOL type is not supported for uprobes), i.e: @ADDR

Re: Re: [PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-28 Thread Masami Hiramatsu
(2013/08/28 14:41), Namhyung Kim wrote: > On Tue, 27 Aug 2013 20:54:45 +0900, Masami Hiramatsu wrote: >> (2013/08/27 17:48), Namhyung Kim wrote: >>> @@ -315,13 +316,18 @@ static int parse_probe_vars(char *arg, const struct >>> fetch_type *t, >>> ret = -EINVAL; >>> } else

Re: Re: [PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-28 Thread Masami Hiramatsu
(2013/08/28 14:41), Namhyung Kim wrote: On Tue, 27 Aug 2013 20:54:45 +0900, Masami Hiramatsu wrote: (2013/08/27 17:48), Namhyung Kim wrote: @@ -315,13 +316,18 @@ static int parse_probe_vars(char *arg, const struct fetch_type *t, ret = -EINVAL; } else if (strncmp(arg,

Re: [PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-27 Thread Namhyung Kim
On Tue, 27 Aug 2013 20:54:45 +0900, Masami Hiramatsu wrote: > (2013/08/27 17:48), Namhyung Kim wrote: >> @@ -315,13 +316,18 @@ static int parse_probe_vars(char *arg, const struct >> fetch_type *t, >> ret = -EINVAL; >> } else if (strncmp(arg, "stack", 5) == 0) { >>

Re: [PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-27 Thread Masami Hiramatsu
(2013/08/27 17:48), Namhyung Kim wrote: > @@ -315,13 +316,18 @@ static int parse_probe_vars(char *arg, const struct > fetch_type *t, > ret = -EINVAL; > } else if (strncmp(arg, "stack", 5) == 0) { > if (arg[5] == '\0') { > - if

[PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-27 Thread Namhyung Kim
From: Namhyung Kim Enable to fetch other types of argument for the uprobes. IOW, we can access stack, memory, deref, bitfield and retval from uprobes now. The format for the argument types are same as kprobes (but @SYMBOL type is not supported for uprobes), i.e: @ADDR : Fetch memory at

[PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-27 Thread Namhyung Kim
From: Namhyung Kim namhyung@lge.com Enable to fetch other types of argument for the uprobes. IOW, we can access stack, memory, deref, bitfield and retval from uprobes now. The format for the argument types are same as kprobes (but @SYMBOL type is not supported for uprobes), i.e: @ADDR

Re: [PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-27 Thread Masami Hiramatsu
(2013/08/27 17:48), Namhyung Kim wrote: @@ -315,13 +316,18 @@ static int parse_probe_vars(char *arg, const struct fetch_type *t, ret = -EINVAL; } else if (strncmp(arg, stack, 5) == 0) { if (arg[5] == '\0') { - if (strcmp(t-name,

Re: [PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-27 Thread Namhyung Kim
On Tue, 27 Aug 2013 20:54:45 +0900, Masami Hiramatsu wrote: (2013/08/27 17:48), Namhyung Kim wrote: @@ -315,13 +316,18 @@ static int parse_probe_vars(char *arg, const struct fetch_type *t, ret = -EINVAL; } else if (strncmp(arg, stack, 5) == 0) { if

Re: [PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-09 Thread Masami Hiramatsu
(2013/08/09 17:45), Namhyung Kim wrote: > From: Namhyung Kim > > Enable to fetch other types of argument for the uprobes. IOW, we can > access stack, memory, deref, bitfield and retval from uprobes now. Could you also add more detail descriptions about what syntax uprobe-event will accept now

[PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-09 Thread Namhyung Kim
From: Namhyung Kim Enable to fetch other types of argument for the uprobes. IOW, we can access stack, memory, deref, bitfield and retval from uprobes now. Original-patch-by: Hyeoncheol Lee Cc: Masami Hiramatsu Cc: Srikar Dronamraju Cc: Oleg Nesterov Cc: zhangwei(Jovi) Cc: Arnaldo Carvalho

[PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-09 Thread Namhyung Kim
From: Namhyung Kim namhyung@lge.com Enable to fetch other types of argument for the uprobes. IOW, we can access stack, memory, deref, bitfield and retval from uprobes now. Original-patch-by: Hyeoncheol Lee cheol@lge.com Cc: Masami Hiramatsu masami.hiramatsu...@hitachi.com Cc: Srikar

Re: [PATCH 13/13] tracing/uprobes: Add support for full argument access methods

2013-08-09 Thread Masami Hiramatsu
(2013/08/09 17:45), Namhyung Kim wrote: From: Namhyung Kim namhyung@lge.com Enable to fetch other types of argument for the uprobes. IOW, we can access stack, memory, deref, bitfield and retval from uprobes now. Could you also add more detail descriptions about what syntax uprobe-event