diff options
author | jb <jb@FreeBSD.org> | 2006-11-04 04:58:10 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 2006-11-04 04:58:10 +0000 |
commit | f7bc0a87d69099d20f880d19b003e86e9914a561 (patch) | |
tree | 35c5c6a7594197845c0bce149a36748fb383ad1b /sys/ia64/conf | |
parent | d871054da8ff096494cd388f1cc6f0545ff18d19 (diff) | |
download | FreeBSD-src-f7bc0a87d69099d20f880d19b003e86e9914a561.zip FreeBSD-src-f7bc0a87d69099d20f880d19b003e86e9914a561.tar.gz |
Build in kernel support for loading DTrace modules by default. This
adds the hooks that DTrace modules register with, and adds a few functions
which have the dtrace_ prefix to allow the DTrace FBT (function boundary
trace) provider to avoid tracing because they are called from the DTtrace
probe context.
Unlike other forms of tracing and debug, DTrace support in the kernel
incurs negligible run-time cost.
I think the only reason why anyone wouldn't want to have kernel support
enabled for DTrace would be due to the license (CDDL) under which DTrace
is released.
Diffstat (limited to 'sys/ia64/conf')
-rw-r--r-- | sys/ia64/conf/DEFAULTS | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/ia64/conf/DEFAULTS b/sys/ia64/conf/DEFAULTS index c36a967..a66c596 100644 --- a/sys/ia64/conf/DEFAULTS +++ b/sys/ia64/conf/DEFAULTS @@ -20,3 +20,6 @@ options GEOM_MBR # KSE support went from being default to a kernel option options KSE + +# Kernel support for loading DTrace modules +options KDTRACE |