From ee753ed190029f2bb1071fa1905073ad15121ae5 Mon Sep 17 00:00:00 2001 From: julian Date: Tue, 31 Aug 2004 06:12:13 +0000 Subject: Remove sched_free_thread() which was only used in diagnostics. It has outlived its usefulness and has started causing panics for people who turn on DIAGNOSTIC, in what is otherwise good code. MFC after: 2 days --- sys/ia64/ia64/trap.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'sys/ia64') diff --git a/sys/ia64/ia64/trap.c b/sys/ia64/ia64/trap.c index 3a67cff..373ffdb 100644 --- a/sys/ia64/ia64/trap.c +++ b/sys/ia64/ia64/trap.c @@ -901,9 +901,6 @@ out: if (user) { userret(td, tf, sticks); mtx_assert(&Giant, MA_NOTOWNED); -#ifdef DIAGNOSTIC - cred_free_thread(td); -#endif do_ast(tf); } return; @@ -1072,10 +1069,6 @@ syscall(struct trapframe *tf) PTRACESTOP_SC(p, td, S_PT_SCX); -#ifdef DIAGNOSTIC - cred_free_thread(td); -#endif - WITNESS_WARN(WARN_PANIC, NULL, "System call %s returning", (code >= 0 && code < SYS_MAXSYSCALL) ? syscallnames[code] : "???"); mtx_assert(&sched_lock, MA_NOTOWNED); @@ -1248,9 +1241,6 @@ ia32_syscall(struct trapframe *tf) */ STOPEVENT(p, S_SCX, code); -#ifdef DIAGNOSTIC - cred_free_thread(td); -#endif WITNESS_WARN(WARN_PANIC, NULL, "System call %s returning", (code >= 0 && code < SYS_MAXSYSCALL) ? syscallnames[code] : "???"); mtx_assert(&sched_lock, MA_NOTOWNED); -- cgit v1.1