summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pmccontrol
diff options
context:
space:
mode:
authorjkoshy <jkoshy@FreeBSD.org>2005-09-29 01:40:03 +0000
committerjkoshy <jkoshy@FreeBSD.org>2005-09-29 01:40:03 +0000
commitfa4873dd0cd23667d9c2c3d72c136d73b5db9175 (patch)
treeeaf65af816fdec5d26f38d872cb88ab92fb316b3 /usr.sbin/pmccontrol
parent3f995d4eb8d88885ff135770d5ad06c212838ca7 (diff)
downloadFreeBSD-src-fa4873dd0cd23667d9c2c3d72c136d73b5db9175.zip
FreeBSD-src-fa4873dd0cd23667d9c2c3d72c136d73b5db9175.tar.gz
The 'intr_bufferfull' driver statistic actually counts the number
of times sampling was stopped due to a space shortage; change its description in the output of `pmcstat -s` to match reality. MFC after: 3 days
Diffstat (limited to 'usr.sbin/pmccontrol')
-rw-r--r--usr.sbin/pmccontrol/pmccontrol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pmccontrol/pmccontrol.c b/usr.sbin/pmccontrol/pmccontrol.c
index 6eb45a7..553daba 100644
--- a/usr.sbin/pmccontrol/pmccontrol.c
+++ b/usr.sbin/pmccontrol/pmccontrol.c
@@ -320,7 +320,7 @@ pmcc_show_statistics(void)
#define PRINT(N,V) (void) printf("%-40s %d\n", (N), gms.pm_##V)
PRINT("interrupts processed:", intr_processed);
PRINT("non-PMC interrupts:", intr_ignored);
- PRINT("interrupts dropped due to lack of space:", intr_bufferfull);
+ PRINT("sampling stalls due to space shortages:", intr_bufferfull);
PRINT("system calls:", syscalls);
PRINT("system calls with errors:", syscall_errors);
PRINT("buffer requests:", buffer_requests);
OpenPOWER on IntegriCloud