mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
perf record: Disable profiling before draining the buffer
I noticed that perf-record continues profiling itself after the child terminated and we're draining the buffer. This can cause a _lot_ of overhead with --all recording - we keep and keep recording, which produces new and new events. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> LKML-Reference: <new-submission> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
2667de81f3
commit
8b412664d0
1 changed files with 12 additions and 1 deletions
|
@ -524,6 +524,7 @@ static int __cmd_record(int argc, const char **argv)
|
||||||
pid_t pid = 0;
|
pid_t pid = 0;
|
||||||
int flags;
|
int flags;
|
||||||
int ret;
|
int ret;
|
||||||
|
unsigned long waking = 0;
|
||||||
|
|
||||||
page_size = sysconf(_SC_PAGE_SIZE);
|
page_size = sysconf(_SC_PAGE_SIZE);
|
||||||
nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
|
nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
|
||||||
|
@ -634,10 +635,20 @@ static int __cmd_record(int argc, const char **argv)
|
||||||
if (hits == samples) {
|
if (hits == samples) {
|
||||||
if (done)
|
if (done)
|
||||||
break;
|
break;
|
||||||
ret = poll(event_array, nr_poll, 100);
|
ret = poll(event_array, nr_poll, -1);
|
||||||
|
waking++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (done) {
|
||||||
|
for (i = 0; i < nr_cpu; i++) {
|
||||||
|
for (counter = 0; counter < nr_counters; counter++)
|
||||||
|
ioctl(fd[i][counter], PERF_COUNTER_IOC_DISABLE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Approximate RIP event size: 24 bytes.
|
* Approximate RIP event size: 24 bytes.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue