lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Fri, 18 Sep 2009 21:37:45 +0200
From:	Peter Zijlstra <peterz@...radead.org>
To:	Arjan van de Ven <arjan@...radead.org>
Cc:	linux-kernel@...r.kernel.org, mingo@...e.hu, fweisbec@...il.com,
	lizf@...fujitsu.com
Subject: Re: [git pull] timechart for -tip

On Fri, 2009-09-18 at 21:26 +0200, Arjan van de Ven wrote:

> @@ -3098,7 +3102,10 @@ static void perf_counter_task_output(struct perf_counter *counter,
>  	task_event->event.tid = perf_counter_tid(counter, task);
>  	task_event->event.ptid = perf_counter_tid(counter, current);
>  
> +	task_event->event.time = sched_clock();
> +
>  	perf_output_put(&handle, task_event->event);
> +
>  	perf_output_end(&handle);
>  }
>  

That's supposed to be perf_clock(), someone made me change that just
now :-)

> diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
> index 2459e5a..7ac1968 100644
> --- a/tools/perf/builtin-record.c
> +++ b/tools/perf/builtin-record.c
> @@ -47,6 +47,7 @@ static int			append_file			= 0;
>  static int			call_graph			= 0;
>  static int			inherit_stat			= 0;
>  static int			no_samples			= 0;
> +static int			timechart			= 0;
>  static int			sample_address			= 0;
>  static int			multiplex			= 0;
>  static int			multiplex_fd			= -1;
> @@ -387,6 +388,12 @@ static void create_counter(int counter, int cpu, pid_t pid)
>  
>  	attr->sample_type	|= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
>  
> +	if (timechart) {
> +		attr->sample_type |= PERF_SAMPLE_CPU;
> +		attr->sample_type |= PERF_SAMPLE_TIME;
> +		attr->sample_type |= PERF_SAMPLE_RAW;
> +	}
> +
>  	if (freq) {
>  		attr->sample_type	|= PERF_SAMPLE_PERIOD;
>  		attr->freq		= 1;
> @@ -661,6 +668,24 @@ static int __cmd_record(int argc, const char **argv)
>  	return 0;
>  }
>  
> +static int do_timechart(const struct option *opt __used, const char *str __used, int unset __used)
> +{
> +	parse_events(NULL, "power:power_start", 0);
> +	parse_events(NULL, "power:power_end", 0);
> +	parse_events(NULL, "power:power_frequency", 0);
> +	parse_events(NULL, "sched:sched_wakeup", 0);
> +	parse_events(NULL, "sched:sched_switch", 0);
> +	default_interval = 1;
> +	system_wide = 1;
> +	timechart = 1;
> +	if (!nr_counters) {
> +		printf("No counters found.. is debugfs mounted?\n");
> +		exit(0);
> +	}
> +	return 0;
> +}
> +
> +
>  static const char * const record_usage[] = {
>  	"perf record [<options>] [<command>]",
>  	"perf record [<options>] -- <command> [<options>]",
> @@ -707,6 +732,9 @@ static const struct option options[] = {
>  		    "don't sample"),
>  	OPT_BOOLEAN('M', "multiplex", &multiplex,
>  		    "multiplex counter output in a single channel"),
> +	OPT_CALLBACK_NOOPT('t', "timechart", NULL, NULL,
> +		     "create a timechart recording",
> +		     do_timechart),
>  	OPT_END()
>  };


Now that we have perf sched record, should this not look like perf
timechart record?

Otherwise they look good. Great work!

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ