mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Namhyung Kim <namhyung@kernel.org>
To: David Ahern <dsahern@gmail.com>
Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Paul Mackerras <paulus@samba.org>, Ingo Molnar <mingo@kernel.org>,
	Namhyung Kim <namhyung.kim@lge.com>,
	LKML <linux-kernel@vger.kernel.org>, Jiri Olsa <jolsa@redhat.com>,
	Stephane Eranian <eranian@google.com>,
	Andi Kleen <andi@firstfloor.org>,
	Pekka Enberg <penberg@kernel.org>,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>
Subject: Re: [RFC/PATCH 1/2] perf script: Add --time-filter option
Date: Thu, 16 May 2013 10:56:56 +0900	[thread overview]
Message-ID: <87sj1n4rh3.fsf@sejong.aot.lge.com> (raw)
In-Reply-To: <5193A6E7.9040501@gmail.com> (David Ahern's message of "Wed, 15 May 2013 09:16:55 -0600")

Hi David,

On Wed, 15 May 2013 09:16:55 -0600, David Ahern wrote:
> On 5/15/13 3:23 AM, Namhyung Kim wrote:
[SNIP]
>> +--time-filter::
>> +	Display samples within a range of time only. A time range can be given
>> +	like 'time1-time2' and treated as a start time and end time
>> +        respectively. The time format is like "<sec>.<usec>". Either of time1
>> +	or time2 can be omitted.
>
> I have this option internally on all analysis commands for while now -- 
> on report, script and my timehist command. Very useful feature.
>
> How about just --time? less typing.

Thanks, I'm fine with '--time' too but '--time-filter' looks more
obvious.  What does the timehist command do, btw? ;)

>
>> +
>>   SEE ALSO
>>   --------
>>   linkperf:perf-record[1], linkperf:perf-script-perl[1],
>> diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
>> index 92d4658f56fb..fec624b9f8e3 100644
>> --- a/tools/perf/builtin-script.c
>> +++ b/tools/perf/builtin-script.c
>> @@ -28,6 +28,17 @@ static bool			system_wide;
>>   static const char		*cpu_list;
>>   static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
>>
>> +#define TIME_FILTER_START 1
>> +#define TIME_FILTER_END   2
>> +
>> +struct time_range {
>> +	int filter;
>> +	u64 start;
>> +	u64 end;
>> +};
>
> The FILTER parts should not be needed.

Right.  I'll remove it.

>
>> +
>> +static struct time_range trange;
>> +
>>   enum perf_output_field {
>>   	PERF_OUTPUT_COMM            = 1U << 0,
>>   	PERF_OUTPUT_TID             = 1U << 1,
>> @@ -510,6 +521,12 @@ static int process_sample_event(struct perf_tool *tool __maybe_unused,
>>   	if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
>>   		return 0;
>>
>> +	if ((trange.filter & TIME_FILTER_START) && trange.start > sample->time)
>> +		return 0;
>
> How about just:
> if (trange.start && trange.start < sample->time)
>     return 0;
>
>> +
>> +	if ((trange.filter & TIME_FILTER_END) && trange.end < sample->time)
>> +		return 0;
>
> and similarly:
> if (trange.end && trange.end > sample->time)
>     return 0;

Okay.

>
>> +
>>   	scripting_ops->process_event(event, sample, evsel, machine, &al);
>>
>>   	evsel->hists.stats.total_period += sample->period;
>> @@ -1236,6 +1253,33 @@ static int have_cmd(int argc, const char **argv)
>>   	return 0;
>>   }
>>
>> +static int
>> +parse_time_filter(const struct option *opt, const char *str,
>> +		  int unset __maybe_unused)
>> +{
>> +	struct time_range *time_range = opt->value;
>> +	char *sep;
>> +
>> +	sep = strchr(str, '-');
>> +	if (sep == NULL || sep[1] == '\0') {
>> +		time_range->filter = TIME_FILTER_START;
>> +		time_range->start = parse_nsec_time(str);
>> +		return 0;
>> +	} else if (sep == str) {
>> +		time_range->filter = TIME_FILTER_END;
>> +		time_range->end = parse_nsec_time(++str);
>> +		return 0;
>> +	}
>> +
>> +	*sep++ = '\0';
>> +
>> +	time_range->filter = TIME_FILTER_START | TIME_FILTER_END;
>> +	time_range->start = parse_nsec_time(str);
>> +	time_range->end = parse_nsec_time(sep);
>
> I would expect parse_nsec_time to fail. e.g., a time string like 123455.a

It looks like current strtol() returns 0 when failed to parse like
above.  Hmm.. do I have to check whether the return value is 0 or just
ignore invalid inputs?

Thanks,
Namhyung

  reply	other threads:[~2013-05-16  1:57 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-15  9:23 Namhyung Kim
2013-05-15  9:23 ` [RFC/PATCH 2/2] perf report: " Namhyung Kim
2013-05-15 11:51   ` Stephane Eranian
2013-05-16  0:48     ` Namhyung Kim
2013-05-15 13:56 ` [RFC/PATCH 1/2] perf script: " Andi Kleen
2013-05-16  0:55   ` Namhyung Kim
2013-05-16 13:09   ` Ingo Molnar
2013-05-15 15:16 ` David Ahern
2013-05-16  1:56   ` Namhyung Kim [this message]
2013-05-16  2:42     ` David Ahern
2013-05-16  8:50       ` Namhyung Kim
2013-05-16 13:29         ` 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=87sj1n4rh3.fsf@sejong.aot.lge.com \
    --to=namhyung@kernel.org \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@ghostprotocols.net \
    --cc=andi@firstfloor.org \
    --cc=dsahern@gmail.com \
    --cc=eranian@google.com \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=namhyung.kim@lge.com \
    --cc=paulus@samba.org \
    --cc=penberg@kernel.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

Powered by JetHome