public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Taeung Song <treeze.taeung@gmail.com>
To: Arnaldo Carvalho de Melo <arnaldo.melo@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>,
	Ingo Molnar <mingo@redhat.com>, Jiri Olsa <jolsa@kernel.org>,
	Namhyung Kim <namhyung@kernel.org>,
	linux-kernel@vger.kernel.org,
	Thomas Gleixner <tglx@linutronix.de>,
	Lai Jiangshan <jiangshanlai@gmail.com>
Subject: Re: [PATCH v2 1/3] tracing/syscalls: Rename variable 'nr' to 'syscall_nr'
Date: Fri, 26 Feb 2016 03:31:19 +0900	[thread overview]
Message-ID: <56CF4877.8000107@gmail.com> (raw)
In-Reply-To: <20160225175710.GP8720@kernel.org>

Hi, Arnaldo

On 02/26/2016 02:57 AM, Arnaldo Carvalho de Melo wrote:
> Em Fri, Feb 26, 2016 at 02:38:57AM +0900, Taeung Song escreveu:
>> There is a problem about duplicated variable name i.e.
>>      # cat /sys/kernel/debug/tracing/events/syscalls/sys_enter_io_getevents/format
>>      name: sys_enter_io_getevents
>>      ID: 739
>>      format:
>>              field:unsigned short common_type; offset:0;  size:2; signed:0;
>>              field:unsigned char common_flags; offset:2;  size:1; signed:0;
>>              field:unsigned char common_preempt_count; offset:3; size:1; signed:0;
>>              field:int common_pid;offset:4;size:4;signed:1;
>>              field:int nr;                     offset:8;  size:4; signed:1;
>>              field:aio_context_t ctx_id;       offset:16; size:8; signed:0;
>>              field:long min_nr;                offset:24; size:8; signed:0;
>>              field:long nr;                    offset:32; size:8; signed:0;
>>              field:struct io_event * events;   offset:40; size:8; signed:0;
>>              field:struct timespec * timeout;  offset:48; size:8; signed:0;
>>
>>              print fmt: "ctx_id: 0x%08lx, min_nr: 0x%08lx, nr: 0x%08lx,
>>                          events: 0x%08lx, timeout: 0x%08lx", ((unsigned long)(REC->ctx_id)),
>>                          ((unsigned long)(REC->min_nr)), ((unsigned long)(REC->nr)),
>>                          ((unsigned long)(REC->events)), ((unsigned long)(REC->timeout))
>>
>> As above 'int nr;' and 'long nr;' variables have
>> duplicated name so problems are occurred in perf-script i.e.
>>
>>      # perf record -e syscalls:*
>>      # perf script -g python
>>      # perf script -s perf-script.py
>>        File "perf-script.py", line 8694
>>          def syscalls__sys_enter_io_getevents(event_name, context, common_cpu,
>>      SyntaxError: duplicate argument 'nr' in function definition
>>      Error running python script perf-script.py
>
> Please test this with 'perf trace', which this patch breaks, this patch
> should make it understand this 3rd variation of the non common list of
> fields in syscall tracepoints:

OK, I will test it.
But IMHO, I think the bottom change has a problem.
Because sys_enter_io_getevent() has a argument 'long nr'.
So this if statement must not have strcmp(sc->args->name, "nr") == 0.

+ if (sc->args && strcmp(sc->args->name, "syscall_nr") == 0) {

I think the above instance seem better than the bottom.

+	if (sc->args && (strcmp(sc->args->name, "syscall_nr") || 
strcmp(sc->args->name, "nr")) == 0) {

But I'll test again with perf-trace.
And then will say the result.

>
> diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
> index 20916dd77aac..b31eed102a83 100644
> --- a/tools/perf/builtin-trace.c
> +++ b/tools/perf/builtin-trace.c
> @@ -1724,8 +1724,8 @@ static int trace__read_syscall_info(struct trace *trace, int id)
>
>   	sc->args = sc->tp_format->format.fields;
>   	sc->nr_args = sc->tp_format->format.nr_fields;
> -	/* drop nr field - not relevant here; does not exist on older kernels */
> -	if (sc->args && strcmp(sc->args->name, "nr") == 0) {
> +	/* drop (syscall_)?nr field - not relevant here; does not exist on older kernels */
> +	if (sc->args && (strcmp(sc->args->name, "syscall_nr") || strcmp(sc->args->name, "nr")) == 0) {
>   		sc->args = sc->args->next;
>   		--sc->nr_args;
>   	}
>
>
> ----------------------
>
> But then I wonder if it wouldn't be better to prefix this with double
> underscores, making it "__syscall_nr" :-\
>

I so agree. Low probability but the name 'syscall_nr' may also
have similar problems.

Thanks,
Taeung

  reply	other threads:[~2016-02-25 18:31 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-25 17:38 [PATCH v2 1/3] tracing/syscalls: Rename variable 'nr' to 'syscall_nr' Taeung Song
2016-02-25 17:57 ` Arnaldo Carvalho de Melo
2016-02-25 18:31   ` Taeung Song [this message]
2016-02-25 18:42     ` Arnaldo Carvalho de Melo
2016-02-26 12:24       ` Taeung Song
2016-02-26 13:01         ` Taeung Song
2016-02-26 13:46         ` Arnaldo Carvalho de Melo
2016-02-26 14:13           ` Taeung Song
2016-02-25 19:00     ` Steven Rostedt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=56CF4877.8000107@gmail.com \
    --to=treeze.taeung@gmail.com \
    --cc=arnaldo.melo@gmail.com \
    --cc=jiangshanlai@gmail.com \
    --cc=jolsa@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=rostedt@goodmis.org \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox