mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
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
This commit is contained in:
parent
94d785c84c
commit
f35f2fc88a
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue