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:   Wed, 24 Jan 2018 08:48:13 +0100
From:   Jiri Olsa <jolsa@...hat.com>
To:     ufo19890607 <ufo19890607@...il.com>
Cc:     peterz@...radead.org, mingo@...hat.com,
        alexander.shishkin@...ux.intel.com, jolsa@...nel.org,
        dsahern@...il.com, namhyung@...nel.org, milian.wolff@...b.com,
        arnaldo.melo@...il.com, yuzhoujian@...ichuxing.com,
        adrian.hunter@...el.com, wangnan0@...wei.com,
        linux-perf-users@...r.kernel.org, linux-kernel@...r.kernel.org,
        acme@...hat.com
Subject: Re: perf stat: Add support to print counts for fixed times

On Wed, Jan 24, 2018 at 03:43:19AM +0100, ufo19890607 wrote:
> From: yuzhoujian <yuzhoujian@...ichuxing.com>
> 
> Hi Jirka
> And how can you control the output for perf stat, if I don't want to use the 
> "sleep" workload, like some user programs. I want to check the "cycles"
> for this program when it just begin to run.
> 
> root@...e10:/home$ gcc -g -o malloc malloc.c
> root@...e10:/home$ ./perf stat -e cycles -I 1000 --times-print 3 ./malloc &
> [1] 32586
> #           time             counts unit events
>      1.000094153      2,914,162,979      cycles                                                      
>      2.000323667      3,062,832,799      cycles                                                      
>      3.000443807      3,063,146,609      cycles

yea, we can't do that now.. we have the exat oposit option in record,
because sometimes you want to skip the initialization phase of the
workload.. any special reason why you want to see just the begining?

we can add this, but maybe change the option name a bit

your code now allows this even if it's not in interval mode

	[jolsa@...va perf]$ sudo ./perf stat -e cycles -a --times-print 3

	 Performance counter stats for 'system wide':

	     1,469,288,467      cycles                                                      

	       3.000502814 seconds time elapsed


I think we should either keep it interval specific:

  perf stat -e cycles -I 1000 --interval-count=3

or make the option general and time based:

  perf stat -e cycles --time=3000


or maybe both ;-)

thanks,
jirka

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ