Don't trace or dump page fault records in the default set of tracepoints

as they can be quite noisy.

Requested by:	Peter Jeremy
MFC after:	3 days
This commit is contained in:
John Baldwin 2012-05-31 14:46:02 +00:00
parent 903892c793
commit 5c506fb0b4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=236357
2 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@
.\" @(#)ktrace.1 8.1 (Berkeley) 6/6/93
.\" $FreeBSD$
.\"
.Dd April 5, 2012
.Dd May 31, 2012
.Dt KTRACE 1
.Os
.Sh NAME
@ -131,7 +131,7 @@ trace
requests
.It Cm +
trace the default set of trace points -
.Cm c , f , i , n , p , s , t , u , y
.Cm c , i , n , p , s , t , u , y
.El
.It Ar command
Execute

View File

@ -32,12 +32,12 @@
#define DEF_POINTS (KTRFAC_SYSCALL | KTRFAC_SYSRET | KTRFAC_NAMEI | \
KTRFAC_GENIO | KTRFAC_PSIG | KTRFAC_USER | \
KTRFAC_STRUCT | KTRFAC_SYSCTL | KTRFAC_CAPFAIL | \
KTRFAC_FAULT | KTRFAC_FAULTEND)
KTRFAC_STRUCT | KTRFAC_SYSCTL | KTRFAC_CAPFAIL)
#define PROC_ABI_POINTS (KTRFAC_PROCCTOR | KTRFAC_PROCDTOR)
#define ALL_POINTS (DEF_POINTS | KTRFAC_CSW | PROC_ABI_POINTS)
#define ALL_POINTS (DEF_POINTS | KTRFAC_CSW | PROC_ABI_POINTS | \
KTRFAC_FAULT | KTRFAC_FAULTEND)
#define DEF_TRACEFILE "ktrace.out"