From: Peter Zijlstra <peterz@infradead.org>
To: Pawel Moll <pawel.moll@arm.com>
Cc: Richard Cochran <richardcochran@gmail.com>,
Steven Rostedt <rostedt@goodmis.org>,
Ingo Molnar <mingo@redhat.com>, Paul Mackerras <paulus@samba.org>,
Arnaldo Carvalho de Melo <acme@kernel.org>,
John Stultz <john.stultz@linaro.org>,
Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
Christopher Covington <cov@codeaurora.org>,
Namhyung Kim <namhyung@kernel.org>,
David Ahern <dsahern@gmail.com>,
Thomas Gleixner <tglx@linutronix.de>,
Tomeu Vizoso <tomeu@tomeuvizoso.net>,
linux-kernel@vger.kernel.org, linux-api@vger.kernel.org
Subject: Re: [PATCH v4 3/3] perf: Sample additional clock value
Date: Mon, 5 Jan 2015 14:45:14 +0100 [thread overview]
Message-ID: <20150105134514.GS30905@twins.programming.kicks-ass.net> (raw)
In-Reply-To: <1415292718-19785-4-git-send-email-pawel.moll@arm.com>
On Thu, Nov 06, 2014 at 04:51:58PM +0000, Pawel Moll wrote:
> Currently three clocks are implemented: CLOCK_REALITME = 0,
> CLOCK_MONOTONIC = 1 and CLOCK_MONOTONIC_RAW = 2. The clock field is
> 5 bits wide to allow for future extension to custom, non-POSIX clock
> sources(MAX_CLOCK for those is 16, see include/uapi/linux/time.h) like
> ARM CoreSight (hardware trace) timestamp generator.
> @@ -304,7 +305,16 @@ struct perf_event_attr {
> mmap2 : 1, /* include mmap with inode data */
> comm_exec : 1, /* flag comm events that are due to an exec */
> uevents : 1, /* allow uevents into the buffer */
> - __reserved_1 : 38;
> +
> + /*
> + * clock: one of the POSIX clock IDs:
> + *
> + * 0 - CLOCK_REALTIME
> + * 1 - CLOCK_MONOTONIC
> + * 4 - CLOCK_MONOTONIC_RAW
> + */
> + clock : 5, /* clock type */
> + __reserved_1 : 33;
>
> union {
> __u32 wakeup_events; /* wakeup every n events */
This would put a constraint on actually changing MAX_CLOCKS, are the
time people OK with that? Thomas, John?
I'm also not quite sure of using the >MAX_CLOCKS space for 'special'
clocks, preferably those would register themselves with the POSIX clock
interface.
> @@ -4631,6 +4637,24 @@ static void __perf_event_header__init_id(struct perf_event_header *header,
> data->cpu_entry.cpu = raw_smp_processor_id();
> data->cpu_entry.reserved = 0;
> }
> +
> + if (sample_type & PERF_SAMPLE_CLOCK) {
> + switch (event->attr.clock) {
> + case CLOCK_REALTIME:
> + data->clock = ktime_get_real_ns();
> + break;
> + case CLOCK_MONOTONIC:
> + data->clock = ktime_get_mono_fast_ns();
> + break;
> + case CLOCK_MONOTONIC_RAW:
> + data->clock = ktime_get_raw_ns();
> + break;
> + default:
> + data->clock = 0;
> + break;
> + }
> + }
> +
> }
This is broken. There is nothing stopping this from being called from
NMI context and only the MONO one is NMI safe.
Also, one would expect something like:
default: {
struct k_clock *kc = clockid_to_kclock(event->attr.clock);
struct timespec ts;
if (kc) {
kc->clock_get(event->attr.clock, &ts);
data->clock = ktime_to_ns(timespec_to_ktime(ts));
} else {
data->clock = 0;
}
}
Albeit preferably slightly less horrible -- of course, one would first
need to deal with the NMI issue.
next prev parent reply other threads:[~2015-01-05 13:45 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-06 16:51 [PATCH v4 0/3] perf: User/kernel time correlation and event generation Pawel Moll
2014-11-06 16:51 ` [PATCH v4 1/3] perf: Use monotonic clock as a source for timestamps Pawel Moll
2014-11-27 15:05 ` Pawel Moll
2014-12-11 13:39 ` Pawel Moll
2015-01-05 13:01 ` Peter Zijlstra
2015-01-21 15:47 ` Pawel Moll
2015-01-05 13:00 ` Peter Zijlstra
2015-01-21 15:52 ` Pawel Moll
2015-01-21 19:48 ` Pawel Moll
2015-01-21 20:07 ` Pawel Moll
2015-01-16 12:41 ` Adrian Hunter
2015-01-21 20:27 ` [PATCH v5] " Pawel Moll
2015-02-02 16:52 ` Pawel Moll
[not found] ` <CAN+dfcT_6zZZ4oeyngUE5N0Wtx2B9CvXsfU71m+cuyXpq2KBdw@mail.gmail.com>
2015-02-03 9:20 ` Pawel Moll
2015-02-11 16:12 ` Peter Zijlstra
2015-02-12 10:04 ` Adrian Hunter
2015-02-12 10:28 ` Peter Zijlstra
2015-02-12 15:38 ` Peter Zijlstra
2015-02-13 0:25 ` John Stultz
2015-02-13 7:07 ` Adrian Hunter
2014-11-06 16:51 ` [PATCH v4 2/3] perf: Userspace event Pawel Moll
2015-01-05 13:12 ` Peter Zijlstra
2015-01-21 16:01 ` Pawel Moll
2014-11-06 16:51 ` [PATCH v4 3/3] perf: Sample additional clock value Pawel Moll
2015-01-05 13:45 ` Peter Zijlstra [this message]
2015-01-05 19:17 ` John Stultz
2015-01-21 17:12 ` Pawel Moll
2015-01-21 17:44 ` John Stultz
2015-01-21 17:54 ` Pawel Moll
2015-01-21 18:05 ` John Stultz
2015-01-23 17:06 ` Pawel Moll
2015-01-23 18:05 ` 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=20150105134514.GS30905@twins.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=acme@kernel.org \
--cc=cov@codeaurora.org \
--cc=dsahern@gmail.com \
--cc=john.stultz@linaro.org \
--cc=linux-api@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=masami.hiramatsu.pt@hitachi.com \
--cc=mingo@redhat.com \
--cc=namhyung@kernel.org \
--cc=paulus@samba.org \
--cc=pawel.moll@arm.com \
--cc=richardcochran@gmail.com \
--cc=rostedt@goodmis.org \
--cc=tglx@linutronix.de \
--cc=tomeu@tomeuvizoso.net \
/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
Powered by JetHome