Re: [PATCH -tip/perf/core ] perf probe: Allow of casting an array of char to string

2013-01-11 Thread Arnaldo Carvalho de Melo
Em Tue, Sep 11, 2012 at 07:18:38PM +0900, Namhyung Kim escreveu: > Hi Hyeoncheol, > > Please CC the perf maintainers - at least Arnaldo for perf tools - next time. > > Thanks, > Namhyung Thanks everyone, applied, with Masami's ack too. - Arnaldo -- To unsubscribe from this list: send the line

Re: [PATCH -tip/perf/core ] perf probe: Allow of casting an array of char to string

2013-01-11 Thread Arnaldo Carvalho de Melo
Em Tue, Sep 11, 2012 at 07:18:38PM +0900, Namhyung Kim escreveu: Hi Hyeoncheol, Please CC the perf maintainers - at least Arnaldo for perf tools - next time. Thanks, Namhyung Thanks everyone, applied, with Masami's ack too. - Arnaldo -- To unsubscribe from this list: send the line

Re: [PATCH -tip/perf/core ] perf probe: Allow of casting an array of char to string

2012-09-11 Thread Namhyung Kim
Hi Hyeoncheol, Please CC the perf maintainers - at least Arnaldo for perf tools - next time. Thanks, Namhyung On Tue, 11 Sep 2012 17:00:54 +0900, Hyeoncheol Lee wrote: > Before casting a type of a variable to string, > convert_variable_type() confirms that the type is a pointer or > an array.

[PATCH -tip/perf/core ] perf probe: Allow of casting an array of char to string

2012-09-11 Thread Hyeoncheol Lee
Before casting a type of a variable to string, convert_variable_type() confirms that the type is a pointer or an array. then if it is a pointer to char, it is casted to string. but in case of an array of char, it isn't Cc: Masami Hiramatsu Cc: Srikar Dronamraju Signed-off-by: H.C. Lee ---

[PATCH -tip/perf/core ] perf probe: Allow of casting an array of char to string

2012-09-11 Thread Hyeoncheol Lee
Before casting a type of a variable to string, convert_variable_type() confirms that the type is a pointer or an array. then if it is a pointer to char, it is casted to string. but in case of an array of char, it isn't Cc: Masami Hiramatsu masami.hiramatsu...@hitachi.com Cc: Srikar Dronamraju

Re: [PATCH -tip/perf/core ] perf probe: Allow of casting an array of char to string

2012-09-11 Thread Namhyung Kim
Hi Hyeoncheol, Please CC the perf maintainers - at least Arnaldo for perf tools - next time. Thanks, Namhyung On Tue, 11 Sep 2012 17:00:54 +0900, Hyeoncheol Lee wrote: Before casting a type of a variable to string, convert_variable_type() confirms that the type is a pointer or an array.