diff options
author | marcel <marcel@FreeBSD.org> | 2011-10-29 01:26:36 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2011-10-29 01:26:36 +0000 |
commit | ac13f9cbdb659f39f2285963f05c7f94b54cb076 (patch) | |
tree | ff89e0d6181e2a275e009bec9b7543d743a73566 | |
parent | 5940d062c3743ab439929ab2bc109d6ba729172a (diff) | |
download | FreeBSD-src-ac13f9cbdb659f39f2285963f05c7f94b54cb076.zip FreeBSD-src-ac13f9cbdb659f39f2285963f05c7f94b54cb076.tar.gz |
Define systrace_probe_func in subr_syscall.c where it's used, instead
of defining it in MD code. This eliminates porting to other architectures.
-rw-r--r-- | sys/amd64/amd64/trap.c | 7 | ||||
-rw-r--r-- | sys/i386/i386/trap.c | 7 | ||||
-rw-r--r-- | sys/kern/subr_syscall.c | 9 |
3 files changed, 9 insertions, 14 deletions
diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c index 9c72a69..29987da 100644 --- a/sys/amd64/amd64/trap.c +++ b/sys/amd64/amd64/trap.c @@ -104,13 +104,6 @@ dtrace_trap_func_t dtrace_trap_func; dtrace_doubletrap_func_t dtrace_doubletrap_func; /* - * This is a hook which is initialised by the systrace module - * when it is loaded. This keeps the DTrace syscall provider - * implementation opaque. - */ -systrace_probe_func_t systrace_probe_func; - -/* * These hooks are necessary for the pid, usdt and fasttrap providers. */ dtrace_fasttrap_probe_ptr_t dtrace_fasttrap_probe_ptr; diff --git a/sys/i386/i386/trap.c b/sys/i386/i386/trap.c index 5006f41..c19846b 100644 --- a/sys/i386/i386/trap.c +++ b/sys/i386/i386/trap.c @@ -113,13 +113,6 @@ dtrace_trap_func_t dtrace_trap_func; dtrace_doubletrap_func_t dtrace_doubletrap_func; /* - * This is a hook which is initialised by the systrace module - * when it is loaded. This keeps the DTrace syscall provider - * implementation opaque. - */ -systrace_probe_func_t systrace_probe_func; - -/* * These hooks are necessary for the pid, usdt and fasttrap providers. */ dtrace_fasttrap_probe_ptr_t dtrace_fasttrap_probe_ptr; diff --git a/sys/kern/subr_syscall.c b/sys/kern/subr_syscall.c index bba4479..f9689a0 100644 --- a/sys/kern/subr_syscall.c +++ b/sys/kern/subr_syscall.c @@ -52,6 +52,15 @@ __FBSDID("$FreeBSD$"); #endif #include <security/audit/audit.h> +#ifdef KDTRACE_HOOKS +/* + * This is a hook which is initialised by the systrace module + * when it is loaded. This keeps the DTrace syscall provider + * implementation opaque. + */ +systrace_probe_func_t systrace_probe_func; +#endif + static inline int syscallenter(struct thread *td, struct syscall_args *sa) { |