提交 2f01190a 编写于 作者: F Frederic Weisbecker 提交者: Ingo Molnar

perf top: Wait for a minimal set of events before reading first snapshot

The first snapshot reading often occur before any events have
been read in the mapped perfcounter files.

Just wait until we have at least one event before starting the
snapshot, or the delay before the first set of entries to be
displayed may be long in case of low refresh rate.

Note: we could also use a semaphore to wait before
"print_entries" number of eveents is reached, but again this
value is tunable and we can't ensure we will even reach it.
Also we could base on a default mimimum set of entries for the
first refresh, say 15, but again, the minimal sample is
tunable, and we could end up displaying nothing until we have a
minimal default set of events, which can take some time in case
of high samples filters.

Hence this simple solution which partially covers the default
case.

[ Impact: fix display artifacts in perf top ]
Signed-off-by: NFrederic Weisbecker <fweisbeec@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <1244322643-6447-1-git-send-email-fweisbec@gmail.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 23b87116
...@@ -420,7 +420,7 @@ static unsigned int mmap_read_head(struct mmap_data *md) ...@@ -420,7 +420,7 @@ static unsigned int mmap_read_head(struct mmap_data *md)
struct timeval last_read, this_read; struct timeval last_read, this_read;
static void mmap_read(struct mmap_data *md) static void mmap_read_counter(struct mmap_data *md)
{ {
unsigned int head = mmap_read_head(md); unsigned int head = mmap_read_head(md);
unsigned int old = md->prev; unsigned int old = md->prev;
...@@ -517,6 +517,16 @@ static void mmap_read(struct mmap_data *md) ...@@ -517,6 +517,16 @@ static void mmap_read(struct mmap_data *md)
static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS]; static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS]; static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
static void mmap_read(void)
{
int i, counter;
for (i = 0; i < nr_cpus; i++) {
for (counter = 0; counter < nr_counters; counter++)
mmap_read_counter(&mmap_array[i][counter]);
}
}
static int __cmd_top(void) static int __cmd_top(void)
{ {
struct perf_counter_attr *attr; struct perf_counter_attr *attr;
...@@ -571,6 +581,11 @@ static int __cmd_top(void) ...@@ -571,6 +581,11 @@ static int __cmd_top(void)
} }
} }
/* Wait for a minimal set of events before starting the snapshot */
poll(event_array, nr_poll, 100);
mmap_read();
if (pthread_create(&thread, NULL, display_thread, NULL)) { if (pthread_create(&thread, NULL, display_thread, NULL)) {
printf("Could not create display thread.\n"); printf("Could not create display thread.\n");
exit(-1); exit(-1);
...@@ -589,10 +604,7 @@ static int __cmd_top(void) ...@@ -589,10 +604,7 @@ static int __cmd_top(void)
while (1) { while (1) {
int hits = samples; int hits = samples;
for (i = 0; i < nr_cpus; i++) { mmap_read();
for (counter = 0; counter < nr_counters; counter++)
mmap_read(&mmap_array[i][counter]);
}
if (hits == samples) if (hits == samples)
ret = poll(event_array, nr_poll, 100); ret = poll(event_array, nr_poll, 100);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册