Author: jhb
Date: Thu May 31 14:46:02 2012
New Revision: 236357
URL: http://svn.freebsd.org/changeset/base/236357

Log:
  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

Modified:
  head/usr.bin/ktrace/ktrace.1
  head/usr.bin/ktrace/ktrace.h

Modified: head/usr.bin/ktrace/ktrace.1
==============================================================================
--- head/usr.bin/ktrace/ktrace.1        Thu May 31 14:18:19 2012        
(r236356)
+++ head/usr.bin/ktrace/ktrace.1        Thu May 31 14:46:02 2012        
(r236357)
@@ -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

Modified: head/usr.bin/ktrace/ktrace.h
==============================================================================
--- head/usr.bin/ktrace/ktrace.h        Thu May 31 14:18:19 2012        
(r236356)
+++ head/usr.bin/ktrace/ktrace.h        Thu May 31 14:46:02 2012        
(r236357)
@@ -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"
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to