Re: [PATCH v3] perf probe: Support signedness casting

2016-08-10 Thread Masami Hiramatsu
On Wed, 10 Aug 2016 10:04:40 -0300 Arnaldo Carvalho de Melo wrote: > Em Wed, Aug 10, 2016 at 07:38:28AM +0900, Masami Hiramatsu escreveu: > > On Tue, 9 Aug 2016 11:05:28 -0300 Arnaldo Carvalho de Melo > > wrote: > > > Em Tue, Aug 09, 2016 at 11:40:08AM +0900,

Re: [PATCH v3] perf probe: Support signedness casting

2016-08-10 Thread Masami Hiramatsu
On Wed, 10 Aug 2016 10:04:40 -0300 Arnaldo Carvalho de Melo wrote: > Em Wed, Aug 10, 2016 at 07:38:28AM +0900, Masami Hiramatsu escreveu: > > On Tue, 9 Aug 2016 11:05:28 -0300 Arnaldo Carvalho de Melo > > wrote: > > > Em Tue, Aug 09, 2016 at 11:40:08AM +0900, Naohiro Aota escreveu: > > > >

Re: [PATCH v3] perf probe: Support signedness casting

2016-08-10 Thread Arnaldo Carvalho de Melo
Em Wed, Aug 10, 2016 at 07:38:28AM +0900, Masami Hiramatsu escreveu: > On Tue, 9 Aug 2016 11:05:28 -0300 Arnaldo Carvalho de Melo > wrote: > > Em Tue, Aug 09, 2016 at 11:40:08AM +0900, Naohiro Aota escreveu: > > > This patch add signedness casting support. By specifying "s" or

Re: [PATCH v3] perf probe: Support signedness casting

2016-08-10 Thread Arnaldo Carvalho de Melo
Em Wed, Aug 10, 2016 at 07:38:28AM +0900, Masami Hiramatsu escreveu: > On Tue, 9 Aug 2016 11:05:28 -0300 Arnaldo Carvalho de Melo > wrote: > > Em Tue, Aug 09, 2016 at 11:40:08AM +0900, Naohiro Aota escreveu: > > > This patch add signedness casting support. By specifying "s" or "u" as a > > >

Re: [PATCH v3] perf probe: Support signedness casting

2016-08-09 Thread Masami Hiramatsu
On Tue, 9 Aug 2016 11:05:28 -0300 Arnaldo Carvalho de Melo wrote: > Em Tue, Aug 09, 2016 at 11:40:08AM +0900, Naohiro Aota escreveu: > > Perf-probe detects a variable's type and use the detected type to add new > > probe. Then, kprobes prints its variable in hexadecimal format

Re: [PATCH v3] perf probe: Support signedness casting

2016-08-09 Thread Masami Hiramatsu
On Tue, 9 Aug 2016 11:05:28 -0300 Arnaldo Carvalho de Melo wrote: > Em Tue, Aug 09, 2016 at 11:40:08AM +0900, Naohiro Aota escreveu: > > Perf-probe detects a variable's type and use the detected type to add new > > probe. Then, kprobes prints its variable in hexadecimal format if the > >

Re: [PATCH v3] perf probe: Support signedness casting

2016-08-09 Thread Arnaldo Carvalho de Melo
Em Tue, Aug 09, 2016 at 11:40:08AM +0900, Naohiro Aota escreveu: > Perf-probe detects a variable's type and use the detected type to add new > probe. Then, kprobes prints its variable in hexadecimal format if the > variable is unsigned and prints in decimal if it is signed. > > We sometimes want

Re: [PATCH v3] perf probe: Support signedness casting

2016-08-09 Thread Arnaldo Carvalho de Melo
Em Tue, Aug 09, 2016 at 11:40:08AM +0900, Naohiro Aota escreveu: > Perf-probe detects a variable's type and use the detected type to add new > probe. Then, kprobes prints its variable in hexadecimal format if the > variable is unsigned and prints in decimal if it is signed. > > We sometimes want

Re: [PATCH v3] perf probe: Support signedness casting

2016-08-09 Thread Masami Hiramatsu
On Tue, 9 Aug 2016 11:40:08 +0900 Naohiro Aota wrote: > Perf-probe detects a variable's type and use the detected type to add new > probe. Then, kprobes prints its variable in hexadecimal format if the > variable is unsigned and prints in decimal if it is signed. > > We

Re: [PATCH v3] perf probe: Support signedness casting

2016-08-09 Thread Masami Hiramatsu
On Tue, 9 Aug 2016 11:40:08 +0900 Naohiro Aota wrote: > Perf-probe detects a variable's type and use the detected type to add new > probe. Then, kprobes prints its variable in hexadecimal format if the > variable is unsigned and prints in decimal if it is signed. > > We sometimes want to see

[PATCH v3] perf probe: Support signedness casting

2016-08-08 Thread Naohiro Aota
Perf-probe detects a variable's type and use the detected type to add new probe. Then, kprobes prints its variable in hexadecimal format if the variable is unsigned and prints in decimal if it is signed. We sometimes want to see unsigned variable in decimal format (i.e. sector_t or size_t). In

[PATCH v3] perf probe: Support signedness casting

2016-08-08 Thread Naohiro Aota
Perf-probe detects a variable's type and use the detected type to add new probe. Then, kprobes prints its variable in hexadecimal format if the variable is unsigned and prints in decimal if it is signed. We sometimes want to see unsigned variable in decimal format (i.e. sector_t or size_t). In