public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: David Ahern <dsahern@gmail.com>
To: Arnaldo Carvalho de Melo <arnaldo.melo@gmail.com>
Cc: linux-kernel@vger.kernel.org,
	Steven Rostedt <rostedt@goodmis.org>,
	Namhyung Kim <namhyung@kernel.org>, Jiri Olsa <jolsa@kernel.org>
Subject: Re: [PATCH] perf trace: Handle legacy syscalls
Date: Fri, 20 Mar 2015 10:12:33 -0600	[thread overview]
Message-ID: <550C46F1.40103@gmail.com> (raw)
In-Reply-To: <20150320160640.GL16485@kernel.org>

On 3/20/15 10:06 AM, Arnaldo Carvalho de Melo wrote:
> Em Fri, Mar 20, 2015 at 09:48:10AM -0600, David Ahern escreveu:
>> On 3/20/15 9:32 AM, Arnaldo Carvalho de Melo wrote:
>>> But then I don't think we need to do that, i.e. we can just have a
>>> boolean we set at some point to tell that we need to skip the first
>>> entry.
>>>
>>> I'll try to cook up a patch for that.
>>
>> why have a boolean that is checked every time through the loop when its
>> value will always be the same for a give run? why not just remove the entry
>> as I suggested?
>
> First gut reaction was: hey, we got that from a library, libtraceevent,
> that could have other users, etc, better not to change it behind its
> back.
>
> I.e. something like this, based on your approach, but not modifying the
> data structures received from libtraceevent:
>
> diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
> index 6af6bcec930e..001c6ae9a1b1 100644
> --- a/tools/perf/builtin-trace.c
> +++ b/tools/perf/builtin-trace.c
> @@ -1135,6 +1135,8 @@ static struct syscall_fmt *syscall_fmt__find(const char *name)
>
>   struct syscall {
>   	struct event_format *tp_format;
> +	int		    nr_args;
> +	struct format_field *args;
>   	const char	    *name;
>   	bool		    filtered;
>   	bool		    is_exit;
> @@ -1442,14 +1444,14 @@ static int syscall__set_arg_fmts(struct syscall *sc)
>   	struct format_field *field;
>   	int idx = 0;
>
> -	sc->arg_scnprintf = calloc(sc->tp_format->format.nr_fields - 1, sizeof(void *));
> +	sc->arg_scnprintf = calloc(sc->nr_args, sizeof(void *));
>   	if (sc->arg_scnprintf == NULL)
>   		return -1;
>
>   	if (sc->fmt)
>   		sc->arg_parm = sc->fmt->arg_parm;
>
> -	for (field = sc->tp_format->format.fields->next; field; field = field->next) {
> +	for (field = sc->args; field; field = field->next) {
>   		if (sc->fmt && sc->fmt->arg_scnprintf[idx])
>   			sc->arg_scnprintf[idx] = sc->fmt->arg_scnprintf[idx];
>   		else if (field->flags & FIELD_IS_POINTER)
> @@ -1515,6 +1517,14 @@ static int trace__read_syscall_info(struct trace *trace, int id)
>   	if (sc->tp_format == NULL)
>   		return -1;
>
> +	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) {
> +		sc->args = sc->args->next;
> +		--sc->nr_args;
> +	}
> +
>   	sc->is_exit = !strcmp(name, "exit_group") || !strcmp(name, "exit");
>
>   	return syscall__set_arg_fmts(sc);
> @@ -1537,7 +1547,7 @@ static size_t syscall__scnprintf_args(struct syscall *sc, char *bf, size_t size,
>   	unsigned char *p;
>   	unsigned long val;
>
> -	if (sc->tp_format != NULL) {
> +	if (sc->args != NULL) {
>   		struct format_field *field;
>   		u8 bit = 1;
>   		struct syscall_arg arg = {
> @@ -1547,7 +1557,7 @@ static size_t syscall__scnprintf_args(struct syscall *sc, char *bf, size_t size,
>   			.thread = thread,
>   		};
>
> -		for (field = sc->tp_format->format.fields->next; field;
> +		for (field = sc->args; field;
>   		     field = field->next, ++arg.idx, bit <<= 1) {
>   			if (arg.mask & bit)
>   				continue;
>

Seems reasonable.


  reply	other threads:[~2015-03-20 16:12 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-19 18:36 [PATCH] perf trace: Handle legacy syscalls David Ahern
2015-03-20 15:32 ` Arnaldo Carvalho de Melo
2015-03-20 15:40   ` Steven Rostedt
2015-03-20 15:44     ` Arnaldo Carvalho de Melo
2015-03-20 15:48       ` David Ahern
2015-03-20 15:48   ` David Ahern
2015-03-20 16:06     ` Arnaldo Carvalho de Melo
2015-03-20 16:12       ` David Ahern [this message]
2015-03-20 16:26         ` Arnaldo Carvalho de Melo
2015-03-20 16:30           ` David Ahern
2015-03-22 10:17 ` [tip:perf/core] tools lib traceevent: Add destructor for format_field tip-bot for David Ahern

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=550C46F1.40103@gmail.com \
    --to=dsahern@gmail.com \
    --cc=arnaldo.melo@gmail.com \
    --cc=jolsa@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=namhyung@kernel.org \
    --cc=rostedt@goodmis.org \
    /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