summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_fork.c
diff options
context:
space:
mode:
authorbenno <benno@FreeBSD.org>2002-03-21 02:47:51 +0000
committerbenno <benno@FreeBSD.org>2002-03-21 02:47:51 +0000
commitd30ab954784b833f48676216a1ae4d1f3b277782 (patch)
tree79d00ae6fdc1b97482355f7af76f1fe686261ef7 /sys/kern/kern_fork.c
parent2b532bd407f84d9decfe089cdeea59ebe6a36bfe (diff)
downloadFreeBSD-src-d30ab954784b833f48676216a1ae4d1f3b277782.zip
FreeBSD-src-d30ab954784b833f48676216a1ae4d1f3b277782.tar.gz
Add a change mirroring that made to kern/subr_trap.c and others.
This makes kernel builds with DIAGNOSTIC work again. Apparently forgotten by: jhb Might want to be checked by: jhb
Diffstat (limited to 'sys/kern/kern_fork.c')
-rw-r--r--sys/kern/kern_fork.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c
index feef8ef..d508cbf 100644
--- a/sys/kern/kern_fork.c
+++ b/sys/kern/kern_fork.c
@@ -481,9 +481,6 @@ again:
PROC_LOCK(p1);
p2->p_ucred = crhold(p1->p_ucred);
td2->td_ucred = crhold(p2->p_ucred); /* XXXKSE */
-#ifdef DIAGNOSTIC /* see the comment in ast() */
- td2->td_ucred_cache = NULL;
-#endif
if (p2->p_args)
p2->p_args->ar_ref++;
@@ -811,12 +808,9 @@ fork_exit(callout, arg, frame)
kthread_exit(0);
}
PROC_UNLOCK(p);
-#ifdef DIAGNOSTIC /* see the comment in ast() */
- if (td->td_ucred_cache)
- panic("fork_exit:thread already has cached ucred");
- td->td_ucred_cache = td->td_ucred;
- td->td_ucred = NULL;
-#endif /* DIAGNOSTIC */
+#ifdef DIAGNOSTIC
+ cred_free_thread(td);
+#endif
mtx_assert(&Giant, MA_NOTOWNED);
}
OpenPOWER on IntegriCloud