From: Christian Borntraeger <borntraeger@de.ibm.com>
To: Jiri Olsa <jolsa@redhat.com>,
Alexander Yarygin <yarygin@linux.vnet.ibm.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Paul Mackerras <paulus@samba.org>, Ingo Molnar <mingo@redhat.com>,
Arnaldo Carvalho de Melo <acme@ghostprotocols.net>,
KVM <kvm@vger.kernel.org>,
linux-s390 <linux-s390@vger.kernel.org>,
Cornelia Huck <cornelia.huck@de.ibm.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] perf/tool: Fix usage of trace events with '-' in trace system name.
Date: Wed, 23 Apr 2014 14:34:38 +0200 [thread overview]
Message-ID: <5357B35E.6020908@de.ibm.com> (raw)
In-Reply-To: <20140423114529.GB11124@krava.brq.redhat.com>
On 23/04/14 13:45, Jiri Olsa wrote:
> On Mon, Apr 21, 2014 at 07:43:50PM +0400, Alexander Yarygin wrote:
[...]
>> And a bit of offtopic :)
>> Apparently, s390 doesn't have syscalls:*, so some of the tests
>> don't work properly (or maybe I missed something? I set CONFIG_FTRACE_SYSCALLS
>> to 'y' in my config: still no syscalls:*).
Strange, on my system I have syscall trace points on s390.
Maybe some additional dependency of CONFIG_FTRACE_SYSCALLS that is not catched
via Kconfig?
>>
>> What do you think about this idea:
>>
>> --- a/tools/perf/tests/parse-events.c
>> +++ b/tools/perf/tests/parse-events.c
>> @@ -1177,13 +1177,21 @@ struct evlist_test {
>> int (*check)(struct perf_evlist *evlist);
>> };
>>
>> +#if !defined(__s390x__)
>> +#define TP_SYS_NAME "syscalls"
>> +#define TP_EVENT_NAME "sys_enter_open"
>> +#else
>> +#define TP_SYS_NAME "sched"
>> +#define TP_EVENT_NAME "sched_wakeup"
>> +#endif
>> +
>> static struct evlist_test test__events[] = {
>> [0] = {
>> - .name = "syscalls:sys_enter_open",
>> + .name = TP_SYS_NAME ":" TP_EVENT_NAME,
>> .check = test__checkevent_tracepoint,
>> },
>>
>> ... and so on?
>
> that looks fine.. also we could use just generic tracepoints
> like the 'sched' ones
I think generic tracepoints are preferred over ifdef, but as I said I have syscalls.
Christian
Christian
next prev parent reply other threads:[~2014-04-23 12:34 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-24 20:49 [PATCH] perf/tool: Fix usage of trace events with '-' in trace system name Christian Borntraeger
2014-03-25 10:15 ` Paolo Bonzini
2014-04-17 11:32 ` Jiri Olsa
2014-04-17 11:41 ` Christian Borntraeger
2014-04-17 11:45 ` Jiri Olsa
2014-04-21 15:43 ` Alexander Yarygin
2014-04-23 11:45 ` Jiri Olsa
2014-04-23 12:34 ` Christian Borntraeger [this message]
2014-04-17 14:40 ` Jiri Olsa
2014-04-23 11:12 ` Christian Borntraeger
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=5357B35E.6020908@de.ibm.com \
--to=borntraeger@de.ibm.com \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@ghostprotocols.net \
--cc=cornelia.huck@de.ibm.com \
--cc=jolsa@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=paulus@samba.org \
--cc=pbonzini@redhat.com \
--cc=yarygin@linux.vnet.ibm.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.