diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-06-07 05:42:25 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-06-07 05:42:25 +0000 |
| commit | af300f23678bc3f991574f17a189934eb0216d33 (patch) | |
| tree | 8b3950e6043924cd75421eb06458cc619f735751 /sys/kern/kern_fork.c | |
| parent | 6c84de02e073a84014fd52fecb23b35c701ed390 (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_fork.c')
| -rw-r--r-- | sys/kern/kern_fork.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index 5a856ce697d0..50886453d182 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -597,15 +597,16 @@ again: #ifdef KTRACE /* - * Copy traceflag and tracefile if enabled. If not inherited, - * these were zeroed above but we still could have a trace race - * so make sure p2's p_tracep is NULL. + * Copy traceflag and tracefile if enabled. */ - if ((p1->p_traceflag & KTRFAC_INHERIT) && p2->p_tracep == NULL) { + mtx_lock(&ktrace_mtx); + KASSERT(p2->p_tracep == NULL, ("new process has a ktrace vnode")); + if (p1->p_traceflag & KTRFAC_INHERIT) { p2->p_traceflag = p1->p_traceflag; if ((p2->p_tracep = p1->p_tracep) != NULL) VREF(p2->p_tracep); } + mtx_unlock(&ktrace_mtx); #endif /* @@ -861,9 +862,8 @@ fork_return(td, frame) userret(td, frame, 0); #ifdef KTRACE - if (KTRPOINT(td->td_proc, KTR_SYSRET)) { - ktrsysret(td->td_proc->p_tracep, SYS_fork, 0, 0); - } + if (KTRPOINT(td, KTR_SYSRET)) + ktrsysret(SYS_fork, 0, 0); #endif mtx_assert(&Giant, MA_NOTOWNED); } |
