xref: /freebsd/sys/kern/kern_thread.c (revision 07a9368a4880e8e972fe873452241f8615bb1a26)
19454b2d8SWarner Losh /*-
244990b8cSJulian Elischer  * Copyright (C) 2001 Julian Elischer <julian@freebsd.org>.
344990b8cSJulian Elischer  *  All rights reserved.
444990b8cSJulian Elischer  *
544990b8cSJulian Elischer  * Redistribution and use in source and binary forms, with or without
644990b8cSJulian Elischer  * modification, are permitted provided that the following conditions
744990b8cSJulian Elischer  * are met:
844990b8cSJulian Elischer  * 1. Redistributions of source code must retain the above copyright
944990b8cSJulian Elischer  *    notice(s), this list of conditions and the following disclaimer as
1044990b8cSJulian Elischer  *    the first lines of this file unmodified other than the possible
1144990b8cSJulian Elischer  *    addition of one or more copyright notices.
1244990b8cSJulian Elischer  * 2. Redistributions in binary form must reproduce the above copyright
1344990b8cSJulian Elischer  *    notice(s), this list of conditions and the following disclaimer in the
1444990b8cSJulian Elischer  *    documentation and/or other materials provided with the distribution.
1544990b8cSJulian Elischer  *
1644990b8cSJulian Elischer  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
1744990b8cSJulian Elischer  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1844990b8cSJulian Elischer  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1944990b8cSJulian Elischer  * DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
2044990b8cSJulian Elischer  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2144990b8cSJulian Elischer  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2244990b8cSJulian Elischer  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2344990b8cSJulian Elischer  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2444990b8cSJulian Elischer  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2544990b8cSJulian Elischer  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
2644990b8cSJulian Elischer  * DAMAGE.
2744990b8cSJulian Elischer  */
2844990b8cSJulian Elischer 
293d06b4b3SAttilio Rao #include "opt_witness.h"
3016d95d4fSJoseph Koshy #include "opt_hwpmc_hooks.h"
313d06b4b3SAttilio Rao 
32677b542eSDavid E. O'Brien #include <sys/cdefs.h>
33677b542eSDavid E. O'Brien __FBSDID("$FreeBSD$");
34677b542eSDavid E. O'Brien 
3544990b8cSJulian Elischer #include <sys/param.h>
3644990b8cSJulian Elischer #include <sys/systm.h>
3744990b8cSJulian Elischer #include <sys/kernel.h>
3844990b8cSJulian Elischer #include <sys/lock.h>
3944990b8cSJulian Elischer #include <sys/mutex.h>
4044990b8cSJulian Elischer #include <sys/proc.h>
418f0e9130SKonstantin Belousov #include <sys/rangelock.h>
42e170bfdaSDavid Xu #include <sys/resourcevar.h>
43b3e9e682SRyan Stone #include <sys/sdt.h>
4494e0a4cdSJulian Elischer #include <sys/smp.h>
45de028f5aSJeff Roberson #include <sys/sched.h>
4644f3b092SJohn Baldwin #include <sys/sleepqueue.h>
47ace8398dSJeff Roberson #include <sys/selinfo.h>
48961a7b24SJohn Baldwin #include <sys/turnstile.h>
4944990b8cSJulian Elischer #include <sys/ktr.h>
50cf7d9a8cSDavid Xu #include <sys/rwlock.h>
51bc8e6d81SDavid Xu #include <sys/umtx.h>
52d7f687fcSJeff Roberson #include <sys/cpuset.h>
5316d95d4fSJoseph Koshy #ifdef	HWPMC_HOOKS
5416d95d4fSJoseph Koshy #include <sys/pmckern.h>
5516d95d4fSJoseph Koshy #endif
5644990b8cSJulian Elischer 
57911b84b0SRobert Watson #include <security/audit/audit.h>
58911b84b0SRobert Watson 
5944990b8cSJulian Elischer #include <vm/vm.h>
6049a2507bSAlan Cox #include <vm/vm_extern.h>
6144990b8cSJulian Elischer #include <vm/uma.h>
62b209f889SRandall Stewart #include <sys/eventhandler.h>
6302fb42b0SPeter Wemm 
64b3e9e682SRyan Stone SDT_PROVIDER_DECLARE(proc);
65d9fae5abSAndriy Gapon SDT_PROBE_DEFINE(proc, , , lwp__exit);
66b3e9e682SRyan Stone 
678460a577SJohn Birrell /*
688460a577SJohn Birrell  * thread related storage.
698460a577SJohn Birrell  */
7044990b8cSJulian Elischer static uma_zone_t thread_zone;
7144990b8cSJulian Elischer 
725215b187SJeff Roberson TAILQ_HEAD(, thread) zombie_threads = TAILQ_HEAD_INITIALIZER(zombie_threads);
73c8790f5dSAttilio Rao static struct mtx zombie_lock;
74a54e85fdSJeff Roberson MTX_SYSINIT(zombie_lock, &zombie_lock, "zombie lock", MTX_SPIN);
7544990b8cSJulian Elischer 
76ff8fbcffSJeff Roberson static void thread_zombie(struct thread *);
77ff8fbcffSJeff Roberson 
78ec6ea5e8SDavid Xu #define TID_BUFFER_SIZE	1024
79ec6ea5e8SDavid Xu 
80fdcac928SMarcel Moolenaar struct mtx tid_lock;
811ea7a6f8SPoul-Henning Kamp static struct unrhdr *tid_unrhdr;
82ec6ea5e8SDavid Xu static lwpid_t tid_buffer[TID_BUFFER_SIZE];
83ec6ea5e8SDavid Xu static int tid_head, tid_tail;
84cf7d9a8cSDavid Xu static MALLOC_DEFINE(M_TIDHASH, "tidhash", "thread hash");
85cf7d9a8cSDavid Xu 
86cf7d9a8cSDavid Xu struct	tidhashhead *tidhashtbl;
87cf7d9a8cSDavid Xu u_long	tidhash;
88cf7d9a8cSDavid Xu struct	rwlock tidhash_lock;
89cf7d9a8cSDavid Xu 
90ec6ea5e8SDavid Xu static lwpid_t
91ec6ea5e8SDavid Xu tid_alloc(void)
92ec6ea5e8SDavid Xu {
93ec6ea5e8SDavid Xu 	lwpid_t	tid;
94ec6ea5e8SDavid Xu 
95ec6ea5e8SDavid Xu 	tid = alloc_unr(tid_unrhdr);
96ec6ea5e8SDavid Xu 	if (tid != -1)
97ec6ea5e8SDavid Xu 		return (tid);
98ec6ea5e8SDavid Xu 	mtx_lock(&tid_lock);
99ec6ea5e8SDavid Xu 	if (tid_head == tid_tail) {
100ec6ea5e8SDavid Xu 		mtx_unlock(&tid_lock);
101ec6ea5e8SDavid Xu 		return (-1);
102ec6ea5e8SDavid Xu 	}
10394cb3545SKonstantin Belousov 	tid = tid_buffer[tid_head];
10494cb3545SKonstantin Belousov 	tid_head = (tid_head + 1) % TID_BUFFER_SIZE;
105ec6ea5e8SDavid Xu 	mtx_unlock(&tid_lock);
106ec6ea5e8SDavid Xu 	return (tid);
107ec6ea5e8SDavid Xu }
108ec6ea5e8SDavid Xu 
109ec6ea5e8SDavid Xu static void
110ec6ea5e8SDavid Xu tid_free(lwpid_t tid)
111ec6ea5e8SDavid Xu {
112ec6ea5e8SDavid Xu 	lwpid_t tmp_tid = -1;
113ec6ea5e8SDavid Xu 
114ec6ea5e8SDavid Xu 	mtx_lock(&tid_lock);
115ec6ea5e8SDavid Xu 	if ((tid_tail + 1) % TID_BUFFER_SIZE == tid_head) {
11694cb3545SKonstantin Belousov 		tmp_tid = tid_buffer[tid_head];
11794cb3545SKonstantin Belousov 		tid_head = (tid_head + 1) % TID_BUFFER_SIZE;
118ec6ea5e8SDavid Xu 	}
11994cb3545SKonstantin Belousov 	tid_buffer[tid_tail] = tid;
12094cb3545SKonstantin Belousov 	tid_tail = (tid_tail + 1) % TID_BUFFER_SIZE;
121ec6ea5e8SDavid Xu 	mtx_unlock(&tid_lock);
122ec6ea5e8SDavid Xu 	if (tmp_tid != -1)
123ec6ea5e8SDavid Xu 		free_unr(tid_unrhdr, tmp_tid);
124ec6ea5e8SDavid Xu }
125ec6ea5e8SDavid Xu 
126fdcac928SMarcel Moolenaar /*
127696058c3SJulian Elischer  * Prepare a thread for use.
12844990b8cSJulian Elischer  */
129b23f72e9SBrian Feldman static int
130b23f72e9SBrian Feldman thread_ctor(void *mem, int size, void *arg, int flags)
13144990b8cSJulian Elischer {
13244990b8cSJulian Elischer 	struct thread	*td;
13344990b8cSJulian Elischer 
13444990b8cSJulian Elischer 	td = (struct thread *)mem;
13571fad9fdSJulian Elischer 	td->td_state = TDS_INACTIVE;
136060563ecSJulian Elischer 	td->td_oncpu = NOCPU;
1376c27c603SJuli Mallett 
138ec6ea5e8SDavid Xu 	td->td_tid = tid_alloc();
139773eff9dSPoul-Henning Kamp 
1406c27c603SJuli Mallett 	/*
1416c27c603SJuli Mallett 	 * Note that td_critnest begins life as 1 because the thread is not
1426c27c603SJuli Mallett 	 * running and is thereby implicitly waiting to be on the receiving
143a54e85fdSJeff Roberson 	 * end of a context switch.
1446c27c603SJuli Mallett 	 */
145139b7550SJohn Baldwin 	td->td_critnest = 1;
146acbe332aSDavid Xu 	td->td_lend_user_pri = PRI_MAX;
147b209f889SRandall Stewart 	EVENTHANDLER_INVOKE(thread_ctor, td);
148911b84b0SRobert Watson #ifdef AUDIT
149911b84b0SRobert Watson 	audit_thread_alloc(td);
150911b84b0SRobert Watson #endif
151d10183d9SDavid Xu 	umtx_thread_alloc(td);
152b23f72e9SBrian Feldman 	return (0);
15344990b8cSJulian Elischer }
15444990b8cSJulian Elischer 
15544990b8cSJulian Elischer /*
15644990b8cSJulian Elischer  * Reclaim a thread after use.
15744990b8cSJulian Elischer  */
15844990b8cSJulian Elischer static void
15944990b8cSJulian Elischer thread_dtor(void *mem, int size, void *arg)
16044990b8cSJulian Elischer {
16144990b8cSJulian Elischer 	struct thread *td;
16244990b8cSJulian Elischer 
16344990b8cSJulian Elischer 	td = (struct thread *)mem;
16444990b8cSJulian Elischer 
16544990b8cSJulian Elischer #ifdef INVARIANTS
16644990b8cSJulian Elischer 	/* Verify that this thread is in a safe state to free. */
16744990b8cSJulian Elischer 	switch (td->td_state) {
16871fad9fdSJulian Elischer 	case TDS_INHIBITED:
16971fad9fdSJulian Elischer 	case TDS_RUNNING:
17071fad9fdSJulian Elischer 	case TDS_CAN_RUN:
17144990b8cSJulian Elischer 	case TDS_RUNQ:
17244990b8cSJulian Elischer 		/*
17344990b8cSJulian Elischer 		 * We must never unlink a thread that is in one of
17444990b8cSJulian Elischer 		 * these states, because it is currently active.
17544990b8cSJulian Elischer 		 */
17644990b8cSJulian Elischer 		panic("bad state for thread unlinking");
17744990b8cSJulian Elischer 		/* NOTREACHED */
17871fad9fdSJulian Elischer 	case TDS_INACTIVE:
17944990b8cSJulian Elischer 		break;
18044990b8cSJulian Elischer 	default:
18144990b8cSJulian Elischer 		panic("bad thread state");
18244990b8cSJulian Elischer 		/* NOTREACHED */
18344990b8cSJulian Elischer 	}
18444990b8cSJulian Elischer #endif
1856e8525ceSRobert Watson #ifdef AUDIT
1866e8525ceSRobert Watson 	audit_thread_free(td);
1876e8525ceSRobert Watson #endif
1881ba4a712SPawel Jakub Dawidek 	/* Free all OSD associated to this thread. */
1891ba4a712SPawel Jakub Dawidek 	osd_thread_exit(td);
1901ba4a712SPawel Jakub Dawidek 
191b209f889SRandall Stewart 	EVENTHANDLER_INVOKE(thread_dtor, td);
192ec6ea5e8SDavid Xu 	tid_free(td->td_tid);
19344990b8cSJulian Elischer }
19444990b8cSJulian Elischer 
19544990b8cSJulian Elischer /*
19644990b8cSJulian Elischer  * Initialize type-stable parts of a thread (when newly created).
19744990b8cSJulian Elischer  */
198b23f72e9SBrian Feldman static int
199b23f72e9SBrian Feldman thread_init(void *mem, int size, int flags)
20044990b8cSJulian Elischer {
20144990b8cSJulian Elischer 	struct thread *td;
20244990b8cSJulian Elischer 
20344990b8cSJulian Elischer 	td = (struct thread *)mem;
204247aba24SMarcel Moolenaar 
20544f3b092SJohn Baldwin 	td->td_sleepqueue = sleepq_alloc();
206961a7b24SJohn Baldwin 	td->td_turnstile = turnstile_alloc();
2078f0e9130SKonstantin Belousov 	td->td_rlqe = NULL;
208b209f889SRandall Stewart 	EVENTHANDLER_INVOKE(thread_init, td);
209de028f5aSJeff Roberson 	td->td_sched = (struct td_sched *)&td[1];
210d10183d9SDavid Xu 	umtx_thread_init(td);
21189b57fcfSKonstantin Belousov 	td->td_kstack = 0;
212b23f72e9SBrian Feldman 	return (0);
21344990b8cSJulian Elischer }
21444990b8cSJulian Elischer 
21544990b8cSJulian Elischer /*
21644990b8cSJulian Elischer  * Tear down type-stable parts of a thread (just before being discarded).
21744990b8cSJulian Elischer  */
21844990b8cSJulian Elischer static void
21944990b8cSJulian Elischer thread_fini(void *mem, int size)
22044990b8cSJulian Elischer {
22144990b8cSJulian Elischer 	struct thread *td;
22244990b8cSJulian Elischer 
22344990b8cSJulian Elischer 	td = (struct thread *)mem;
224b209f889SRandall Stewart 	EVENTHANDLER_INVOKE(thread_fini, td);
2258f0e9130SKonstantin Belousov 	rlqentry_free(td->td_rlqe);
226961a7b24SJohn Baldwin 	turnstile_free(td->td_turnstile);
22744f3b092SJohn Baldwin 	sleepq_free(td->td_sleepqueue);
228d10183d9SDavid Xu 	umtx_thread_fini(td);
229ace8398dSJeff Roberson 	seltdfini(td);
23044990b8cSJulian Elischer }
2315215b187SJeff Roberson 
2325c8329edSJulian Elischer /*
2335215b187SJeff Roberson  * For a newly created process,
2345215b187SJeff Roberson  * link up all the structures and its initial threads etc.
235ed062c8dSJulian Elischer  * called from:
236e7d939bdSMarcel Moolenaar  * {arch}/{arch}/machdep.c   {arch}_init(), init386() etc.
237ed062c8dSJulian Elischer  * proc_dtor() (should go away)
238ed062c8dSJulian Elischer  * proc_init()
2395c8329edSJulian Elischer  */
2405c8329edSJulian Elischer void
24189b57fcfSKonstantin Belousov proc_linkup0(struct proc *p, struct thread *td)
24289b57fcfSKonstantin Belousov {
24389b57fcfSKonstantin Belousov 	TAILQ_INIT(&p->p_threads);	     /* all threads in proc */
24489b57fcfSKonstantin Belousov 	proc_linkup(p, td);
24589b57fcfSKonstantin Belousov }
24689b57fcfSKonstantin Belousov 
24789b57fcfSKonstantin Belousov void
2488460a577SJohn Birrell proc_linkup(struct proc *p, struct thread *td)
2495c8329edSJulian Elischer {
250a54e85fdSJeff Roberson 
2519104847fSDavid Xu 	sigqueue_init(&p->p_sigqueue, p);
252ebceaf6dSDavid Xu 	p->p_ksi = ksiginfo_alloc(1);
253ebceaf6dSDavid Xu 	if (p->p_ksi != NULL) {
2545c474517SDavid Xu 		/* XXX p_ksi may be null if ksiginfo zone is not ready */
255ebceaf6dSDavid Xu 		p->p_ksi->ksi_flags = KSI_EXT | KSI_INS;
256ebceaf6dSDavid Xu 	}
257b2f92ef9SDavid Xu 	LIST_INIT(&p->p_mqnotifier);
2585c8329edSJulian Elischer 	p->p_numthreads = 0;
2598460a577SJohn Birrell 	thread_link(td, p);
2605c8329edSJulian Elischer }
2615c8329edSJulian Elischer 
2625c8329edSJulian Elischer /*
26344990b8cSJulian Elischer  * Initialize global thread allocation resources.
26444990b8cSJulian Elischer  */
26544990b8cSJulian Elischer void
26644990b8cSJulian Elischer threadinit(void)
26744990b8cSJulian Elischer {
26844990b8cSJulian Elischer 
2691ea7a6f8SPoul-Henning Kamp 	mtx_init(&tid_lock, "TID lock", NULL, MTX_DEF);
27002c6fc21SKonstantin Belousov 
27102c6fc21SKonstantin Belousov 	/*
272abce621cSKonstantin Belousov 	 * pid_max cannot be greater than PID_MAX.
27302c6fc21SKonstantin Belousov 	 * leave one number for thread0.
27402c6fc21SKonstantin Belousov 	 */
2756829a5c5SJulian Elischer 	tid_unrhdr = new_unrhdr(PID_MAX + 2, INT_MAX, &tid_lock);
2761ea7a6f8SPoul-Henning Kamp 
277de028f5aSJeff Roberson 	thread_zone = uma_zcreate("THREAD", sched_sizeof_thread(),
27844990b8cSJulian Elischer 	    thread_ctor, thread_dtor, thread_init, thread_fini,
2794649e92bSJohn Baldwin 	    16 - 1, 0);
280cf7d9a8cSDavid Xu 	tidhashtbl = hashinit(maxproc / 2, M_TIDHASH, &tidhash);
281cf7d9a8cSDavid Xu 	rw_init(&tidhash_lock, "tidhash");
28244990b8cSJulian Elischer }
28344990b8cSJulian Elischer 
28444990b8cSJulian Elischer /*
285ff8fbcffSJeff Roberson  * Place an unused thread on the zombie list.
286ad1e7d28SJulian Elischer  * Use the slpq as that must be unused by now.
28744990b8cSJulian Elischer  */
28844990b8cSJulian Elischer void
289ff8fbcffSJeff Roberson thread_zombie(struct thread *td)
29044990b8cSJulian Elischer {
291a54e85fdSJeff Roberson 	mtx_lock_spin(&zombie_lock);
292ad1e7d28SJulian Elischer 	TAILQ_INSERT_HEAD(&zombie_threads, td, td_slpq);
293a54e85fdSJeff Roberson 	mtx_unlock_spin(&zombie_lock);
29444990b8cSJulian Elischer }
29544990b8cSJulian Elischer 
2965c8329edSJulian Elischer /*
297ff8fbcffSJeff Roberson  * Release a thread that has exited after cpu_throw().
298ff8fbcffSJeff Roberson  */
299ff8fbcffSJeff Roberson void
300ff8fbcffSJeff Roberson thread_stash(struct thread *td)
301ff8fbcffSJeff Roberson {
302ff8fbcffSJeff Roberson 	atomic_subtract_rel_int(&td->td_proc->p_exitthreads, 1);
303ff8fbcffSJeff Roberson 	thread_zombie(td);
304ff8fbcffSJeff Roberson }
305ff8fbcffSJeff Roberson 
306ff8fbcffSJeff Roberson /*
3076617724cSJeff Roberson  * Reap zombie resources.
30844990b8cSJulian Elischer  */
30944990b8cSJulian Elischer void
31044990b8cSJulian Elischer thread_reap(void)
31144990b8cSJulian Elischer {
3125c8329edSJulian Elischer 	struct thread *td_first, *td_next;
31344990b8cSJulian Elischer 
31444990b8cSJulian Elischer 	/*
3155215b187SJeff Roberson 	 * Don't even bother to lock if none at this instant,
3165215b187SJeff Roberson 	 * we really don't care about the next instant..
31744990b8cSJulian Elischer 	 */
3188460a577SJohn Birrell 	if (!TAILQ_EMPTY(&zombie_threads)) {
319a54e85fdSJeff Roberson 		mtx_lock_spin(&zombie_lock);
3205c8329edSJulian Elischer 		td_first = TAILQ_FIRST(&zombie_threads);
3215c8329edSJulian Elischer 		if (td_first)
3225c8329edSJulian Elischer 			TAILQ_INIT(&zombie_threads);
323a54e85fdSJeff Roberson 		mtx_unlock_spin(&zombie_lock);
3245c8329edSJulian Elischer 		while (td_first) {
325ad1e7d28SJulian Elischer 			td_next = TAILQ_NEXT(td_first, td_slpq);
3265215b187SJeff Roberson 			if (td_first->td_ucred)
3275215b187SJeff Roberson 				crfree(td_first->td_ucred);
3285c8329edSJulian Elischer 			thread_free(td_first);
3295c8329edSJulian Elischer 			td_first = td_next;
33044990b8cSJulian Elischer 		}
33144990b8cSJulian Elischer 	}
332ed062c8dSJulian Elischer }
33344990b8cSJulian Elischer 
3344f0db5e0SJulian Elischer /*
33544990b8cSJulian Elischer  * Allocate a thread.
33644990b8cSJulian Elischer  */
33744990b8cSJulian Elischer struct thread *
3388a945d10SKonstantin Belousov thread_alloc(int pages)
33944990b8cSJulian Elischer {
34089b57fcfSKonstantin Belousov 	struct thread *td;
3418460a577SJohn Birrell 
34244990b8cSJulian Elischer 	thread_reap(); /* check if any zombies to get */
34389b57fcfSKonstantin Belousov 
34489b57fcfSKonstantin Belousov 	td = (struct thread *)uma_zalloc(thread_zone, M_WAITOK);
34589b57fcfSKonstantin Belousov 	KASSERT(td->td_kstack == 0, ("thread_alloc got thread with kstack"));
3468a945d10SKonstantin Belousov 	if (!vm_thread_new(td, pages)) {
34789b57fcfSKonstantin Belousov 		uma_zfree(thread_zone, td);
34889b57fcfSKonstantin Belousov 		return (NULL);
34989b57fcfSKonstantin Belousov 	}
3500c3967e7SMarcel Moolenaar 	cpu_thread_alloc(td);
35189b57fcfSKonstantin Belousov 	return (td);
35244990b8cSJulian Elischer }
35344990b8cSJulian Elischer 
3548a945d10SKonstantin Belousov int
3558a945d10SKonstantin Belousov thread_alloc_stack(struct thread *td, int pages)
3568a945d10SKonstantin Belousov {
3578a945d10SKonstantin Belousov 
3588a945d10SKonstantin Belousov 	KASSERT(td->td_kstack == 0,
3598a945d10SKonstantin Belousov 	    ("thread_alloc_stack called on a thread with kstack"));
3608a945d10SKonstantin Belousov 	if (!vm_thread_new(td, pages))
3618a945d10SKonstantin Belousov 		return (0);
3628a945d10SKonstantin Belousov 	cpu_thread_alloc(td);
3638a945d10SKonstantin Belousov 	return (1);
3648a945d10SKonstantin Belousov }
3654f0db5e0SJulian Elischer 
3664f0db5e0SJulian Elischer /*
36744990b8cSJulian Elischer  * Deallocate a thread.
36844990b8cSJulian Elischer  */
36944990b8cSJulian Elischer void
37044990b8cSJulian Elischer thread_free(struct thread *td)
37144990b8cSJulian Elischer {
3722e6b8de4SJeff Roberson 
3732e6b8de4SJeff Roberson 	lock_profile_thread_exit(td);
37445aea8deSJeff Roberson 	if (td->td_cpuset)
375d7f687fcSJeff Roberson 		cpuset_rel(td->td_cpuset);
376d7f687fcSJeff Roberson 	td->td_cpuset = NULL;
3770c3967e7SMarcel Moolenaar 	cpu_thread_free(td);
37889b57fcfSKonstantin Belousov 	if (td->td_kstack != 0)
37989b57fcfSKonstantin Belousov 		vm_thread_dispose(td);
38044990b8cSJulian Elischer 	uma_zfree(thread_zone, td);
38144990b8cSJulian Elischer }
38244990b8cSJulian Elischer 
38344990b8cSJulian Elischer /*
38444990b8cSJulian Elischer  * Discard the current thread and exit from its context.
38594e0a4cdSJulian Elischer  * Always called with scheduler locked.
38644990b8cSJulian Elischer  *
38744990b8cSJulian Elischer  * Because we can't free a thread while we're operating under its context,
388696058c3SJulian Elischer  * push the current thread into our CPU's deadthread holder. This means
389696058c3SJulian Elischer  * we needn't worry about someone else grabbing our context before we
3906617724cSJeff Roberson  * do a cpu_throw().
39144990b8cSJulian Elischer  */
39244990b8cSJulian Elischer void
39344990b8cSJulian Elischer thread_exit(void)
39444990b8cSJulian Elischer {
3957e3a96eaSJohn Baldwin 	uint64_t runtime, new_switchtime;
39644990b8cSJulian Elischer 	struct thread *td;
3971c4bcd05SJeff Roberson 	struct thread *td2;
39844990b8cSJulian Elischer 	struct proc *p;
3997847a9daSJohn Baldwin 	int wakeup_swapper;
40044990b8cSJulian Elischer 
40144990b8cSJulian Elischer 	td = curthread;
40244990b8cSJulian Elischer 	p = td->td_proc;
40344990b8cSJulian Elischer 
404a54e85fdSJeff Roberson 	PROC_SLOCK_ASSERT(p, MA_OWNED);
405ed062c8dSJulian Elischer 	mtx_assert(&Giant, MA_NOTOWNED);
406a54e85fdSJeff Roberson 
40744990b8cSJulian Elischer 	PROC_LOCK_ASSERT(p, MA_OWNED);
408ed062c8dSJulian Elischer 	KASSERT(p != NULL, ("thread exiting without a process"));
409cc701b73SRobert Watson 	CTR3(KTR_PROC, "thread_exit: thread %p (pid %ld, %s)", td,
410e01eafefSJulian Elischer 	    (long)p->p_pid, td->td_name);
4119104847fSDavid Xu 	KASSERT(TAILQ_EMPTY(&td->td_sigqueue.sq_list), ("signal pending"));
41244990b8cSJulian Elischer 
41389964dd2SRobert Watson #ifdef AUDIT
41489964dd2SRobert Watson 	AUDIT_SYSCALL_EXIT(0, td);
41589964dd2SRobert Watson #endif
416d10183d9SDavid Xu 	umtx_thread_exit(td);
417ed062c8dSJulian Elischer 	/*
418ed062c8dSJulian Elischer 	 * drop FPU & debug register state storage, or any other
419ed062c8dSJulian Elischer 	 * architecture specific resources that
420ed062c8dSJulian Elischer 	 * would not be on a new untouched process.
421ed062c8dSJulian Elischer 	 */
42244990b8cSJulian Elischer 	cpu_thread_exit(td);	/* XXXSMP */
42344990b8cSJulian Elischer 
424ed062c8dSJulian Elischer 	/*
4251faf202eSJulian Elischer 	 * The last thread is left attached to the process
4261faf202eSJulian Elischer 	 * So that the whole bundle gets recycled. Skip
427ed062c8dSJulian Elischer 	 * all this stuff if we never had threads.
428ed062c8dSJulian Elischer 	 * EXIT clears all sign of other threads when
429ed062c8dSJulian Elischer 	 * it goes to single threading, so the last thread always
430ed062c8dSJulian Elischer 	 * takes the short path.
4311faf202eSJulian Elischer 	 */
432ed062c8dSJulian Elischer 	if (p->p_flag & P_HADTHREADS) {
4331faf202eSJulian Elischer 		if (p->p_numthreads > 1) {
434fd229b5bSKonstantin Belousov 			atomic_add_int(&td->td_proc->p_exitthreads, 1);
435d3a0bd78SJulian Elischer 			thread_unlink(td);
4361c4bcd05SJeff Roberson 			td2 = FIRST_THREAD_IN_PROC(p);
4371c4bcd05SJeff Roberson 			sched_exit_thread(td2, td);
438ed062c8dSJulian Elischer 
439ed062c8dSJulian Elischer 			/*
44044990b8cSJulian Elischer 			 * The test below is NOT true if we are the
4419182554aSKonstantin Belousov 			 * sole exiting thread. P_STOPPED_SINGLE is unset
44244990b8cSJulian Elischer 			 * in exit1() after it is the only survivor.
44344990b8cSJulian Elischer 			 */
4441279572aSDavid Xu 			if (P_SHOULDSTOP(p) == P_STOPPED_SINGLE) {
44544990b8cSJulian Elischer 				if (p->p_numthreads == p->p_suspcount) {
446a54e85fdSJeff Roberson 					thread_lock(p->p_singlethread);
4477847a9daSJohn Baldwin 					wakeup_swapper = thread_unsuspend_one(
4487847a9daSJohn Baldwin 						p->p_singlethread);
449a54e85fdSJeff Roberson 					thread_unlock(p->p_singlethread);
4507847a9daSJohn Baldwin 					if (wakeup_swapper)
4517847a9daSJohn Baldwin 						kick_proc0();
45244990b8cSJulian Elischer 				}
45344990b8cSJulian Elischer 			}
45448bfcdddSJulian Elischer 
455696058c3SJulian Elischer 			PCPU_SET(deadthread, td);
4561faf202eSJulian Elischer 		} else {
457ed062c8dSJulian Elischer 			/*
458ed062c8dSJulian Elischer 			 * The last thread is exiting.. but not through exit()
459ed062c8dSJulian Elischer 			 */
460ed062c8dSJulian Elischer 			panic ("thread_exit: Last thread exiting on its own");
461ed062c8dSJulian Elischer 		}
4621faf202eSJulian Elischer 	}
46316d95d4fSJoseph Koshy #ifdef	HWPMC_HOOKS
46416d95d4fSJoseph Koshy 	/*
46516d95d4fSJoseph Koshy 	 * If this thread is part of a process that is being tracked by hwpmc(4),
46616d95d4fSJoseph Koshy 	 * inform the module of the thread's impending exit.
46716d95d4fSJoseph Koshy 	 */
46816d95d4fSJoseph Koshy 	if (PMC_PROC_IS_USING_PMCS(td->td_proc))
46916d95d4fSJoseph Koshy 		PMC_SWITCH_CONTEXT(td, PMC_FN_CSW_OUT);
47016d95d4fSJoseph Koshy #endif
471a54e85fdSJeff Roberson 	PROC_UNLOCK(p);
4725c7bebf9SKonstantin Belousov 	PROC_STATLOCK(p);
4735c7bebf9SKonstantin Belousov 	thread_lock(td);
4745c7bebf9SKonstantin Belousov 	PROC_SUNLOCK(p);
4757e3a96eaSJohn Baldwin 
4767e3a96eaSJohn Baldwin 	/* Do the same timestamp bookkeeping that mi_switch() would do. */
4777e3a96eaSJohn Baldwin 	new_switchtime = cpu_ticks();
4787e3a96eaSJohn Baldwin 	runtime = new_switchtime - PCPU_GET(switchtime);
4797e3a96eaSJohn Baldwin 	td->td_runtime += runtime;
4807e3a96eaSJohn Baldwin 	td->td_incruntime += runtime;
4817e3a96eaSJohn Baldwin 	PCPU_SET(switchtime, new_switchtime);
4827e3a96eaSJohn Baldwin 	PCPU_SET(switchticks, ticks);
4837e3a96eaSJohn Baldwin 	PCPU_INC(cnt.v_swtch);
4847e3a96eaSJohn Baldwin 
4857e3a96eaSJohn Baldwin 	/* Save our resource usage in our process. */
4867e3a96eaSJohn Baldwin 	td->td_ru.ru_nvcsw++;
48741fd9c63SKonstantin Belousov 	ruxagg(p, td);
4887e3a96eaSJohn Baldwin 	rucollect(&p->p_ru, &td->td_ru);
4895c7bebf9SKonstantin Belousov 	PROC_STATUNLOCK(p);
4907e3a96eaSJohn Baldwin 
491dcc9954eSJulian Elischer 	td->td_state = TDS_INACTIVE;
4923d06b4b3SAttilio Rao #ifdef WITNESS
4933d06b4b3SAttilio Rao 	witness_thread_exit(td);
4943d06b4b3SAttilio Rao #endif
495732d9528SJulian Elischer 	CTR1(KTR_PROC, "thread_exit: cpu_throw() thread %p", td);
496a54e85fdSJeff Roberson 	sched_throw(td);
497cc66ebe2SPeter Wemm 	panic("I'm a teapot!");
49844990b8cSJulian Elischer 	/* NOTREACHED */
49944990b8cSJulian Elischer }
50044990b8cSJulian Elischer 
50144990b8cSJulian Elischer /*
502696058c3SJulian Elischer  * Do any thread specific cleanups that may be needed in wait()
50337814395SPeter Wemm  * called with Giant, proc and schedlock not held.
504696058c3SJulian Elischer  */
505696058c3SJulian Elischer void
506696058c3SJulian Elischer thread_wait(struct proc *p)
507696058c3SJulian Elischer {
508696058c3SJulian Elischer 	struct thread *td;
509696058c3SJulian Elischer 
51037814395SPeter Wemm 	mtx_assert(&Giant, MA_NOTOWNED);
511624bf9e1SKonstantin Belousov 	KASSERT(p->p_numthreads == 1, ("multiple threads in thread_wait()"));
512624bf9e1SKonstantin Belousov 	KASSERT(p->p_exitthreads == 0, ("p_exitthreads leaking"));
513ff8fbcffSJeff Roberson 	td = FIRST_THREAD_IN_PROC(p);
514ff8fbcffSJeff Roberson 	/* Lock the last thread so we spin until it exits cpu_throw(). */
515ff8fbcffSJeff Roberson 	thread_lock(td);
516ff8fbcffSJeff Roberson 	thread_unlock(td);
5172e6b8de4SJeff Roberson 	lock_profile_thread_exit(td);
518d7f687fcSJeff Roberson 	cpuset_rel(td->td_cpuset);
519d7f687fcSJeff Roberson 	td->td_cpuset = NULL;
520696058c3SJulian Elischer 	cpu_thread_clean(td);
521ed062c8dSJulian Elischer 	crfree(td->td_ucred);
522696058c3SJulian Elischer 	thread_reap();	/* check for zombie threads etc. */
523696058c3SJulian Elischer }
524696058c3SJulian Elischer 
525696058c3SJulian Elischer /*
52644990b8cSJulian Elischer  * Link a thread to a process.
5271faf202eSJulian Elischer  * set up anything that needs to be initialized for it to
5281faf202eSJulian Elischer  * be used by the process.
52944990b8cSJulian Elischer  */
53044990b8cSJulian Elischer void
5318460a577SJohn Birrell thread_link(struct thread *td, struct proc *p)
53244990b8cSJulian Elischer {
53344990b8cSJulian Elischer 
534a54e85fdSJeff Roberson 	/*
535a54e85fdSJeff Roberson 	 * XXX This can't be enabled because it's called for proc0 before
536374ae2a3SJeff Roberson 	 * its lock has been created.
537374ae2a3SJeff Roberson 	 * PROC_LOCK_ASSERT(p, MA_OWNED);
538a54e85fdSJeff Roberson 	 */
53971fad9fdSJulian Elischer 	td->td_state    = TDS_INACTIVE;
54044990b8cSJulian Elischer 	td->td_proc     = p;
541b61ce5b0SJeff Roberson 	td->td_flags    = TDF_INMEM;
54244990b8cSJulian Elischer 
5431faf202eSJulian Elischer 	LIST_INIT(&td->td_contested);
544eea4f254SJeff Roberson 	LIST_INIT(&td->td_lprof[0]);
545eea4f254SJeff Roberson 	LIST_INIT(&td->td_lprof[1]);
5469104847fSDavid Xu 	sigqueue_init(&td->td_sigqueue, p);
547c06eb4e2SSam Leffler 	callout_init(&td->td_slpcallout, CALLOUT_MPSAFE);
54866d8df9dSDaniel Eischen 	TAILQ_INSERT_TAIL(&p->p_threads, td, td_plist);
54944990b8cSJulian Elischer 	p->p_numthreads++;
55044990b8cSJulian Elischer }
55144990b8cSJulian Elischer 
552ed062c8dSJulian Elischer /*
553ed062c8dSJulian Elischer  * Called from:
554ed062c8dSJulian Elischer  *  thread_exit()
555ed062c8dSJulian Elischer  */
556d3a0bd78SJulian Elischer void
557d3a0bd78SJulian Elischer thread_unlink(struct thread *td)
558d3a0bd78SJulian Elischer {
559d3a0bd78SJulian Elischer 	struct proc *p = td->td_proc;
560d3a0bd78SJulian Elischer 
561374ae2a3SJeff Roberson 	PROC_LOCK_ASSERT(p, MA_OWNED);
562d3a0bd78SJulian Elischer 	TAILQ_REMOVE(&p->p_threads, td, td_plist);
563d3a0bd78SJulian Elischer 	p->p_numthreads--;
564d3a0bd78SJulian Elischer 	/* could clear a few other things here */
5658460a577SJohn Birrell 	/* Must  NOT clear links to proc! */
5665c8329edSJulian Elischer }
5675c8329edSJulian Elischer 
56879799053SKonstantin Belousov static int
56979799053SKonstantin Belousov calc_remaining(struct proc *p, int mode)
57079799053SKonstantin Belousov {
57179799053SKonstantin Belousov 	int remaining;
57279799053SKonstantin Belousov 
5737b519077SKonstantin Belousov 	PROC_LOCK_ASSERT(p, MA_OWNED);
5747b519077SKonstantin Belousov 	PROC_SLOCK_ASSERT(p, MA_OWNED);
57579799053SKonstantin Belousov 	if (mode == SINGLE_EXIT)
57679799053SKonstantin Belousov 		remaining = p->p_numthreads;
57779799053SKonstantin Belousov 	else if (mode == SINGLE_BOUNDARY)
57879799053SKonstantin Belousov 		remaining = p->p_numthreads - p->p_boundary_count;
57979799053SKonstantin Belousov 	else if (mode == SINGLE_NO_EXIT)
58079799053SKonstantin Belousov 		remaining = p->p_numthreads - p->p_suspcount;
58179799053SKonstantin Belousov 	else
58279799053SKonstantin Belousov 		panic("calc_remaining: wrong mode %d", mode);
58379799053SKonstantin Belousov 	return (remaining);
58479799053SKonstantin Belousov }
58579799053SKonstantin Belousov 
586*07a9368aSKonstantin Belousov static int
587*07a9368aSKonstantin Belousov remain_for_mode(int mode)
588*07a9368aSKonstantin Belousov {
589*07a9368aSKonstantin Belousov 
590*07a9368aSKonstantin Belousov 	return (1);
591*07a9368aSKonstantin Belousov }
592*07a9368aSKonstantin Belousov 
593*07a9368aSKonstantin Belousov static int
594*07a9368aSKonstantin Belousov weed_inhib(int mode, struct thread *td2, struct proc *p)
595*07a9368aSKonstantin Belousov {
596*07a9368aSKonstantin Belousov 	int wakeup_swapper;
597*07a9368aSKonstantin Belousov 
598*07a9368aSKonstantin Belousov 	PROC_LOCK_ASSERT(p, MA_OWNED);
599*07a9368aSKonstantin Belousov 	PROC_SLOCK_ASSERT(p, MA_OWNED);
600*07a9368aSKonstantin Belousov 	THREAD_LOCK_ASSERT(td2, MA_OWNED);
601*07a9368aSKonstantin Belousov 
602*07a9368aSKonstantin Belousov 	wakeup_swapper = 0;
603*07a9368aSKonstantin Belousov 	switch (mode) {
604*07a9368aSKonstantin Belousov 	case SINGLE_EXIT:
605*07a9368aSKonstantin Belousov 		if (TD_IS_SUSPENDED(td2))
606*07a9368aSKonstantin Belousov 			wakeup_swapper |= thread_unsuspend_one(td2);
607*07a9368aSKonstantin Belousov 		if (TD_ON_SLEEPQ(td2) && (td2->td_flags & TDF_SINTR) != 0)
608*07a9368aSKonstantin Belousov 			wakeup_swapper |= sleepq_abort(td2, EINTR);
609*07a9368aSKonstantin Belousov 		break;
610*07a9368aSKonstantin Belousov 	case SINGLE_BOUNDARY:
611*07a9368aSKonstantin Belousov 		if (TD_IS_SUSPENDED(td2) && (td2->td_flags & TDF_BOUNDARY) == 0)
612*07a9368aSKonstantin Belousov 			wakeup_swapper |= thread_unsuspend_one(td2);
613*07a9368aSKonstantin Belousov 		if (TD_ON_SLEEPQ(td2) && (td2->td_flags & TDF_SINTR) != 0)
614*07a9368aSKonstantin Belousov 			wakeup_swapper |= sleepq_abort(td2, ERESTART);
615*07a9368aSKonstantin Belousov 		break;
616*07a9368aSKonstantin Belousov 	case SINGLE_NO_EXIT:
617*07a9368aSKonstantin Belousov 		if (TD_IS_SUSPENDED(td2) && (td2->td_flags & TDF_BOUNDARY) == 0)
618*07a9368aSKonstantin Belousov 			wakeup_swapper |= thread_unsuspend_one(td2);
619*07a9368aSKonstantin Belousov 		if (TD_ON_SLEEPQ(td2) && (td2->td_flags & TDF_SINTR) != 0)
620*07a9368aSKonstantin Belousov 			wakeup_swapper |= sleepq_abort(td2, ERESTART);
621*07a9368aSKonstantin Belousov 		break;
622*07a9368aSKonstantin Belousov 	}
623*07a9368aSKonstantin Belousov 	return (wakeup_swapper);
624*07a9368aSKonstantin Belousov }
625*07a9368aSKonstantin Belousov 
6265215b187SJeff Roberson /*
62744990b8cSJulian Elischer  * Enforce single-threading.
62844990b8cSJulian Elischer  *
62944990b8cSJulian Elischer  * Returns 1 if the caller must abort (another thread is waiting to
63044990b8cSJulian Elischer  * exit the process or similar). Process is locked!
63144990b8cSJulian Elischer  * Returns 0 when you are successfully the only thread running.
63244990b8cSJulian Elischer  * A process has successfully single threaded in the suspend mode when
63344990b8cSJulian Elischer  * There are no threads in user mode. Threads in the kernel must be
63444990b8cSJulian Elischer  * allowed to continue until they get to the user boundary. They may even
63544990b8cSJulian Elischer  * copy out their return values and data before suspending. They may however be
636e2668f55SMaxim Konovalov  * accelerated in reaching the user boundary as we will wake up
63744990b8cSJulian Elischer  * any sleeping threads that are interruptable. (PCATCH).
63844990b8cSJulian Elischer  */
63944990b8cSJulian Elischer int
640906ac69dSDavid Xu thread_single(int mode)
64144990b8cSJulian Elischer {
64244990b8cSJulian Elischer 	struct thread *td;
64344990b8cSJulian Elischer 	struct thread *td2;
64444990b8cSJulian Elischer 	struct proc *p;
645da7bbd2cSJohn Baldwin 	int remaining, wakeup_swapper;
64644990b8cSJulian Elischer 
64744990b8cSJulian Elischer 	td = curthread;
64844990b8cSJulian Elischer 	p = td->td_proc;
64937814395SPeter Wemm 	mtx_assert(&Giant, MA_NOTOWNED);
65044990b8cSJulian Elischer 	PROC_LOCK_ASSERT(p, MA_OWNED);
65144990b8cSJulian Elischer 
652ed062c8dSJulian Elischer 	if ((p->p_flag & P_HADTHREADS) == 0)
65344990b8cSJulian Elischer 		return (0);
65444990b8cSJulian Elischer 
655e3b9bf71SJulian Elischer 	/* Is someone already single threading? */
656906ac69dSDavid Xu 	if (p->p_singlethread != NULL && p->p_singlethread != td)
65744990b8cSJulian Elischer 		return (1);
65844990b8cSJulian Elischer 
659906ac69dSDavid Xu 	if (mode == SINGLE_EXIT) {
660906ac69dSDavid Xu 		p->p_flag |= P_SINGLE_EXIT;
661906ac69dSDavid Xu 		p->p_flag &= ~P_SINGLE_BOUNDARY;
662906ac69dSDavid Xu 	} else {
663906ac69dSDavid Xu 		p->p_flag &= ~P_SINGLE_EXIT;
664906ac69dSDavid Xu 		if (mode == SINGLE_BOUNDARY)
665906ac69dSDavid Xu 			p->p_flag |= P_SINGLE_BOUNDARY;
666906ac69dSDavid Xu 		else
667906ac69dSDavid Xu 			p->p_flag &= ~P_SINGLE_BOUNDARY;
668906ac69dSDavid Xu 	}
6691279572aSDavid Xu 	p->p_flag |= P_STOPPED_SINGLE;
6707b4a950aSDavid Xu 	PROC_SLOCK(p);
671112afcb2SJohn Baldwin 	p->p_singlethread = td;
67279799053SKonstantin Belousov 	remaining = calc_remaining(p, mode);
673*07a9368aSKonstantin Belousov 	while (remaining != remain_for_mode(mode)) {
674bf1a3220SDavid Xu 		if (P_SHOULDSTOP(p) != P_STOPPED_SINGLE)
675bf1a3220SDavid Xu 			goto stopme;
676da7bbd2cSJohn Baldwin 		wakeup_swapper = 0;
67744990b8cSJulian Elischer 		FOREACH_THREAD_IN_PROC(p, td2) {
67844990b8cSJulian Elischer 			if (td2 == td)
67944990b8cSJulian Elischer 				continue;
680a54e85fdSJeff Roberson 			thread_lock(td2);
681b7edba77SJeff Roberson 			td2->td_flags |= TDF_ASTPENDING | TDF_NEEDSUSPCHK;
682*07a9368aSKonstantin Belousov 			if (TD_IS_INHIBITED(td2))
683*07a9368aSKonstantin Belousov 				wakeup_swapper |= weed_inhib(mode, td2, p);
684d8267df7SDavid Xu #ifdef SMP
685d8267df7SDavid Xu 			else if (TD_IS_RUNNING(td2) && td != td2) {
686d8267df7SDavid Xu 				forward_signal(td2);
687d8267df7SDavid Xu 			}
688d8267df7SDavid Xu #endif
689a54e85fdSJeff Roberson 			thread_unlock(td2);
6909d102777SJulian Elischer 		}
691da7bbd2cSJohn Baldwin 		if (wakeup_swapper)
692da7bbd2cSJohn Baldwin 			kick_proc0();
69379799053SKonstantin Belousov 		remaining = calc_remaining(p, mode);
694ec008e96SDavid Xu 
6959d102777SJulian Elischer 		/*
6969d102777SJulian Elischer 		 * Maybe we suspended some threads.. was it enough?
6979d102777SJulian Elischer 		 */
698*07a9368aSKonstantin Belousov 		if (remaining == remain_for_mode(mode))
6999d102777SJulian Elischer 			break;
7009d102777SJulian Elischer 
701bf1a3220SDavid Xu stopme:
70244990b8cSJulian Elischer 		/*
70344990b8cSJulian Elischer 		 * Wake us up when everyone else has suspended.
704e3b9bf71SJulian Elischer 		 * In the mean time we suspend as well.
70544990b8cSJulian Elischer 		 */
706a54e85fdSJeff Roberson 		thread_suspend_switch(td);
70779799053SKonstantin Belousov 		remaining = calc_remaining(p, mode);
70844990b8cSJulian Elischer 	}
709906ac69dSDavid Xu 	if (mode == SINGLE_EXIT) {
71091599697SJulian Elischer 		/*
7118626a0ddSKonstantin Belousov 		 * Convert the process to an unthreaded process.  The
7128626a0ddSKonstantin Belousov 		 * SINGLE_EXIT is called by exit1() or execve(), in
7138626a0ddSKonstantin Belousov 		 * both cases other threads must be retired.
71491599697SJulian Elischer 		 */
7158626a0ddSKonstantin Belousov 		KASSERT(p->p_numthreads == 1, ("Unthreading with >1 threads"));
716ed062c8dSJulian Elischer 		p->p_singlethread = NULL;
7178626a0ddSKonstantin Belousov 		p->p_flag &= ~(P_STOPPED_SINGLE | P_SINGLE_EXIT | P_HADTHREADS);
718fd229b5bSKonstantin Belousov 
719fd229b5bSKonstantin Belousov 		/*
720fd229b5bSKonstantin Belousov 		 * Wait for any remaining threads to exit cpu_throw().
721fd229b5bSKonstantin Belousov 		 */
722fd229b5bSKonstantin Belousov 		while (p->p_exitthreads != 0) {
723fd229b5bSKonstantin Belousov 			PROC_SUNLOCK(p);
724fd229b5bSKonstantin Belousov 			PROC_UNLOCK(p);
725fd229b5bSKonstantin Belousov 			sched_relinquish(td);
726fd229b5bSKonstantin Belousov 			PROC_LOCK(p);
727fd229b5bSKonstantin Belousov 			PROC_SLOCK(p);
728fd229b5bSKonstantin Belousov 		}
72991599697SJulian Elischer 	}
7307b4a950aSDavid Xu 	PROC_SUNLOCK(p);
73144990b8cSJulian Elischer 	return (0);
73244990b8cSJulian Elischer }
73344990b8cSJulian Elischer 
7348638fe7bSKonstantin Belousov bool
7358638fe7bSKonstantin Belousov thread_suspend_check_needed(void)
7368638fe7bSKonstantin Belousov {
7378638fe7bSKonstantin Belousov 	struct proc *p;
7388638fe7bSKonstantin Belousov 	struct thread *td;
7398638fe7bSKonstantin Belousov 
7408638fe7bSKonstantin Belousov 	td = curthread;
7418638fe7bSKonstantin Belousov 	p = td->td_proc;
7428638fe7bSKonstantin Belousov 	PROC_LOCK_ASSERT(p, MA_OWNED);
7438638fe7bSKonstantin Belousov 	return (P_SHOULDSTOP(p) || ((p->p_flag & P_TRACED) != 0 &&
7448638fe7bSKonstantin Belousov 	    (td->td_dbgflags & TDB_SUSPEND) != 0));
7458638fe7bSKonstantin Belousov }
7468638fe7bSKonstantin Belousov 
74744990b8cSJulian Elischer /*
74844990b8cSJulian Elischer  * Called in from locations that can safely check to see
74944990b8cSJulian Elischer  * whether we have to suspend or at least throttle for a
75044990b8cSJulian Elischer  * single-thread event (e.g. fork).
75144990b8cSJulian Elischer  *
75244990b8cSJulian Elischer  * Such locations include userret().
75344990b8cSJulian Elischer  * If the "return_instead" argument is non zero, the thread must be able to
75444990b8cSJulian Elischer  * accept 0 (caller may continue), or 1 (caller must abort) as a result.
75544990b8cSJulian Elischer  *
75644990b8cSJulian Elischer  * The 'return_instead' argument tells the function if it may do a
75744990b8cSJulian Elischer  * thread_exit() or suspend, or whether the caller must abort and back
75844990b8cSJulian Elischer  * out instead.
75944990b8cSJulian Elischer  *
76044990b8cSJulian Elischer  * If the thread that set the single_threading request has set the
76144990b8cSJulian Elischer  * P_SINGLE_EXIT bit in the process flags then this call will never return
76244990b8cSJulian Elischer  * if 'return_instead' is false, but will exit.
76344990b8cSJulian Elischer  *
76444990b8cSJulian Elischer  * P_SINGLE_EXIT | return_instead == 0| return_instead != 0
76544990b8cSJulian Elischer  *---------------+--------------------+---------------------
76644990b8cSJulian Elischer  *       0       | returns 0          |   returns 0 or 1
767353374b5SJohn Baldwin  *               | when ST ends       |   immediately
76844990b8cSJulian Elischer  *---------------+--------------------+---------------------
76944990b8cSJulian Elischer  *       1       | thread exits       |   returns 1
770353374b5SJohn Baldwin  *               |                    |  immediately
77144990b8cSJulian Elischer  * 0 = thread_exit() or suspension ok,
77244990b8cSJulian Elischer  * other = return error instead of stopping the thread.
77344990b8cSJulian Elischer  *
77444990b8cSJulian Elischer  * While a full suspension is under effect, even a single threading
77544990b8cSJulian Elischer  * thread would be suspended if it made this call (but it shouldn't).
77644990b8cSJulian Elischer  * This call should only be made from places where
77744990b8cSJulian Elischer  * thread_exit() would be safe as that may be the outcome unless
77844990b8cSJulian Elischer  * return_instead is set.
77944990b8cSJulian Elischer  */
78044990b8cSJulian Elischer int
78144990b8cSJulian Elischer thread_suspend_check(int return_instead)
78244990b8cSJulian Elischer {
783ecafb24bSJuli Mallett 	struct thread *td;
784ecafb24bSJuli Mallett 	struct proc *p;
7857847a9daSJohn Baldwin 	int wakeup_swapper;
78644990b8cSJulian Elischer 
78744990b8cSJulian Elischer 	td = curthread;
78844990b8cSJulian Elischer 	p = td->td_proc;
78937814395SPeter Wemm 	mtx_assert(&Giant, MA_NOTOWNED);
79044990b8cSJulian Elischer 	PROC_LOCK_ASSERT(p, MA_OWNED);
7918638fe7bSKonstantin Belousov 	while (thread_suspend_check_needed()) {
7921279572aSDavid Xu 		if (P_SHOULDSTOP(p) == P_STOPPED_SINGLE) {
79344990b8cSJulian Elischer 			KASSERT(p->p_singlethread != NULL,
79444990b8cSJulian Elischer 			    ("singlethread not set"));
79544990b8cSJulian Elischer 			/*
796e3b9bf71SJulian Elischer 			 * The only suspension in action is a
797e3b9bf71SJulian Elischer 			 * single-threading. Single threader need not stop.
798b6d5995eSJulian Elischer 			 * XXX Should be safe to access unlocked
799b6d5995eSJulian Elischer 			 * as it can only be set to be true by us.
80044990b8cSJulian Elischer 			 */
801e3b9bf71SJulian Elischer 			if (p->p_singlethread == td)
80244990b8cSJulian Elischer 				return (0);	/* Exempt from stopping. */
80344990b8cSJulian Elischer 		}
80445a4bfa1SDavid Xu 		if ((p->p_flag & P_SINGLE_EXIT) && return_instead)
80594f0972bSDavid Xu 			return (EINTR);
80644990b8cSJulian Elischer 
807906ac69dSDavid Xu 		/* Should we goto user boundary if we didn't come from there? */
808906ac69dSDavid Xu 		if (P_SHOULDSTOP(p) == P_STOPPED_SINGLE &&
809906ac69dSDavid Xu 		    (p->p_flag & P_SINGLE_BOUNDARY) && return_instead)
81094f0972bSDavid Xu 			return (ERESTART);
811906ac69dSDavid Xu 
81244990b8cSJulian Elischer 		/*
813d071a6faSJohn Baldwin 		 * Ignore suspend requests for stop signals if they
814d071a6faSJohn Baldwin 		 * are deferred.
815d071a6faSJohn Baldwin 		 */
816d071a6faSJohn Baldwin 		if (P_SHOULDSTOP(p) == P_STOPPED_SIG &&
817d071a6faSJohn Baldwin 		    td->td_flags & TDF_SBDRY) {
818d071a6faSJohn Baldwin 			KASSERT(return_instead,
819d071a6faSJohn Baldwin 			    ("TDF_SBDRY set for unsafe thread_suspend_check"));
820d071a6faSJohn Baldwin 			return (0);
821d071a6faSJohn Baldwin 		}
822d071a6faSJohn Baldwin 
823d071a6faSJohn Baldwin 		/*
82444990b8cSJulian Elischer 		 * If the process is waiting for us to exit,
82544990b8cSJulian Elischer 		 * this thread should just suicide.
8261279572aSDavid Xu 		 * Assumes that P_SINGLE_EXIT implies P_STOPPED_SINGLE.
82744990b8cSJulian Elischer 		 */
828cf7d9a8cSDavid Xu 		if ((p->p_flag & P_SINGLE_EXIT) && (p->p_singlethread != td)) {
829cf7d9a8cSDavid Xu 			PROC_UNLOCK(p);
830cf7d9a8cSDavid Xu 			tidhash_remove(td);
831cf7d9a8cSDavid Xu 			PROC_LOCK(p);
83221ecd1e9SDavid Xu 			tdsigcleanup(td);
833cf7d9a8cSDavid Xu 			PROC_SLOCK(p);
83421ecd1e9SDavid Xu 			thread_stopped(p);
83544990b8cSJulian Elischer 			thread_exit();
836cf7d9a8cSDavid Xu 		}
83721ecd1e9SDavid Xu 
83821ecd1e9SDavid Xu 		PROC_SLOCK(p);
83921ecd1e9SDavid Xu 		thread_stopped(p);
840a54e85fdSJeff Roberson 		if (P_SHOULDSTOP(p) == P_STOPPED_SINGLE) {
841a54e85fdSJeff Roberson 			if (p->p_numthreads == p->p_suspcount + 1) {
842a54e85fdSJeff Roberson 				thread_lock(p->p_singlethread);
8437847a9daSJohn Baldwin 				wakeup_swapper =
844a54e85fdSJeff Roberson 				    thread_unsuspend_one(p->p_singlethread);
845a54e85fdSJeff Roberson 				thread_unlock(p->p_singlethread);
8467847a9daSJohn Baldwin 				if (wakeup_swapper)
8477847a9daSJohn Baldwin 					kick_proc0();
848a54e85fdSJeff Roberson 			}
849a54e85fdSJeff Roberson 		}
8503f9be10eSDavid Xu 		PROC_UNLOCK(p);
8517b4a950aSDavid Xu 		thread_lock(td);
85244990b8cSJulian Elischer 		/*
85344990b8cSJulian Elischer 		 * When a thread suspends, it just
854ad1e7d28SJulian Elischer 		 * gets taken off all queues.
85544990b8cSJulian Elischer 		 */
85671fad9fdSJulian Elischer 		thread_suspend_one(td);
857906ac69dSDavid Xu 		if (return_instead == 0) {
858906ac69dSDavid Xu 			p->p_boundary_count++;
859906ac69dSDavid Xu 			td->td_flags |= TDF_BOUNDARY;
860cf19bf91SJulian Elischer 		}
8617b4a950aSDavid Xu 		PROC_SUNLOCK(p);
8628df78c41SJeff Roberson 		mi_switch(SW_INVOL | SWT_SUSPEND, NULL);
863a54e85fdSJeff Roberson 		if (return_instead == 0)
864906ac69dSDavid Xu 			td->td_flags &= ~TDF_BOUNDARY;
865a54e85fdSJeff Roberson 		thread_unlock(td);
86644990b8cSJulian Elischer 		PROC_LOCK(p);
8677b519077SKonstantin Belousov 		if (return_instead == 0) {
8687b519077SKonstantin Belousov 			PROC_SLOCK(p);
869a54e85fdSJeff Roberson 			p->p_boundary_count--;
8707b519077SKonstantin Belousov 			PROC_SUNLOCK(p);
8717b519077SKonstantin Belousov 		}
87244990b8cSJulian Elischer 	}
87344990b8cSJulian Elischer 	return (0);
87444990b8cSJulian Elischer }
87544990b8cSJulian Elischer 
87635c32a76SDavid Xu void
877a54e85fdSJeff Roberson thread_suspend_switch(struct thread *td)
878a54e85fdSJeff Roberson {
879a54e85fdSJeff Roberson 	struct proc *p;
880a54e85fdSJeff Roberson 
881a54e85fdSJeff Roberson 	p = td->td_proc;
882a54e85fdSJeff Roberson 	KASSERT(!TD_IS_SUSPENDED(td), ("already suspended"));
883a54e85fdSJeff Roberson 	PROC_LOCK_ASSERT(p, MA_OWNED);
8847b4a950aSDavid Xu 	PROC_SLOCK_ASSERT(p, MA_OWNED);
885a54e85fdSJeff Roberson 	/*
886a54e85fdSJeff Roberson 	 * We implement thread_suspend_one in stages here to avoid
887a54e85fdSJeff Roberson 	 * dropping the proc lock while the thread lock is owned.
888a54e85fdSJeff Roberson 	 */
889a54e85fdSJeff Roberson 	thread_stopped(p);
890a54e85fdSJeff Roberson 	p->p_suspcount++;
8913f9be10eSDavid Xu 	PROC_UNLOCK(p);
8927b4a950aSDavid Xu 	thread_lock(td);
893b7edba77SJeff Roberson 	td->td_flags &= ~TDF_NEEDSUSPCHK;
894a54e85fdSJeff Roberson 	TD_SET_SUSPENDED(td);
895c5aa6b58SJeff Roberson 	sched_sleep(td, 0);
8967b4a950aSDavid Xu 	PROC_SUNLOCK(p);
897a54e85fdSJeff Roberson 	DROP_GIANT();
8988df78c41SJeff Roberson 	mi_switch(SW_VOL | SWT_SUSPEND, NULL);
899a54e85fdSJeff Roberson 	thread_unlock(td);
900a54e85fdSJeff Roberson 	PICKUP_GIANT();
901a54e85fdSJeff Roberson 	PROC_LOCK(p);
9027b4a950aSDavid Xu 	PROC_SLOCK(p);
903a54e85fdSJeff Roberson }
904a54e85fdSJeff Roberson 
905a54e85fdSJeff Roberson void
90635c32a76SDavid Xu thread_suspend_one(struct thread *td)
90735c32a76SDavid Xu {
90835c32a76SDavid Xu 	struct proc *p = td->td_proc;
90935c32a76SDavid Xu 
9107b4a950aSDavid Xu 	PROC_SLOCK_ASSERT(p, MA_OWNED);
911a54e85fdSJeff Roberson 	THREAD_LOCK_ASSERT(td, MA_OWNED);
912e574e444SDavid Xu 	KASSERT(!TD_IS_SUSPENDED(td), ("already suspended"));
91335c32a76SDavid Xu 	p->p_suspcount++;
914b7edba77SJeff Roberson 	td->td_flags &= ~TDF_NEEDSUSPCHK;
91571fad9fdSJulian Elischer 	TD_SET_SUSPENDED(td);
916c5aa6b58SJeff Roberson 	sched_sleep(td, 0);
91735c32a76SDavid Xu }
91835c32a76SDavid Xu 
9197847a9daSJohn Baldwin int
92035c32a76SDavid Xu thread_unsuspend_one(struct thread *td)
92135c32a76SDavid Xu {
92235c32a76SDavid Xu 	struct proc *p = td->td_proc;
92335c32a76SDavid Xu 
9247b4a950aSDavid Xu 	PROC_SLOCK_ASSERT(p, MA_OWNED);
925a54e85fdSJeff Roberson 	THREAD_LOCK_ASSERT(td, MA_OWNED);
926ad1e7d28SJulian Elischer 	KASSERT(TD_IS_SUSPENDED(td), ("Thread not suspended"));
92771fad9fdSJulian Elischer 	TD_CLR_SUSPENDED(td);
92835c32a76SDavid Xu 	p->p_suspcount--;
9297847a9daSJohn Baldwin 	return (setrunnable(td));
93035c32a76SDavid Xu }
93135c32a76SDavid Xu 
93244990b8cSJulian Elischer /*
93344990b8cSJulian Elischer  * Allow all threads blocked by single threading to continue running.
93444990b8cSJulian Elischer  */
93544990b8cSJulian Elischer void
93644990b8cSJulian Elischer thread_unsuspend(struct proc *p)
93744990b8cSJulian Elischer {
93844990b8cSJulian Elischer 	struct thread *td;
9397847a9daSJohn Baldwin 	int wakeup_swapper;
94044990b8cSJulian Elischer 
94144990b8cSJulian Elischer 	PROC_LOCK_ASSERT(p, MA_OWNED);
9427b4a950aSDavid Xu 	PROC_SLOCK_ASSERT(p, MA_OWNED);
9437847a9daSJohn Baldwin 	wakeup_swapper = 0;
94444990b8cSJulian Elischer 	if (!P_SHOULDSTOP(p)) {
945ad1e7d28SJulian Elischer                 FOREACH_THREAD_IN_PROC(p, td) {
946a54e85fdSJeff Roberson 			thread_lock(td);
947ad1e7d28SJulian Elischer 			if (TD_IS_SUSPENDED(td)) {
9487847a9daSJohn Baldwin 				wakeup_swapper |= thread_unsuspend_one(td);
94944990b8cSJulian Elischer 			}
950a54e85fdSJeff Roberson 			thread_unlock(td);
951ad1e7d28SJulian Elischer 		}
9521279572aSDavid Xu 	} else if ((P_SHOULDSTOP(p) == P_STOPPED_SINGLE) &&
95344990b8cSJulian Elischer 	    (p->p_numthreads == p->p_suspcount)) {
95444990b8cSJulian Elischer 		/*
95544990b8cSJulian Elischer 		 * Stopping everything also did the job for the single
95644990b8cSJulian Elischer 		 * threading request. Now we've downgraded to single-threaded,
95744990b8cSJulian Elischer 		 * let it continue.
95844990b8cSJulian Elischer 		 */
959a54e85fdSJeff Roberson 		thread_lock(p->p_singlethread);
9607847a9daSJohn Baldwin 		wakeup_swapper = thread_unsuspend_one(p->p_singlethread);
961a54e85fdSJeff Roberson 		thread_unlock(p->p_singlethread);
96244990b8cSJulian Elischer 	}
9637847a9daSJohn Baldwin 	if (wakeup_swapper)
9647847a9daSJohn Baldwin 		kick_proc0();
96544990b8cSJulian Elischer }
96644990b8cSJulian Elischer 
967ed062c8dSJulian Elischer /*
968ed062c8dSJulian Elischer  * End the single threading mode..
969ed062c8dSJulian Elischer  */
97044990b8cSJulian Elischer void
97144990b8cSJulian Elischer thread_single_end(void)
97244990b8cSJulian Elischer {
97344990b8cSJulian Elischer 	struct thread *td;
97444990b8cSJulian Elischer 	struct proc *p;
9757847a9daSJohn Baldwin 	int wakeup_swapper;
97644990b8cSJulian Elischer 
977*07a9368aSKonstantin Belousov 	p = curproc;
97844990b8cSJulian Elischer 	PROC_LOCK_ASSERT(p, MA_OWNED);
979906ac69dSDavid Xu 	p->p_flag &= ~(P_STOPPED_SINGLE | P_SINGLE_EXIT | P_SINGLE_BOUNDARY);
9807b4a950aSDavid Xu 	PROC_SLOCK(p);
98144990b8cSJulian Elischer 	p->p_singlethread = NULL;
9827847a9daSJohn Baldwin 	wakeup_swapper = 0;
98349539972SJulian Elischer 	/*
9847847a9daSJohn Baldwin 	 * If there are other threads they may now run,
98549539972SJulian Elischer 	 * unless of course there is a blanket 'stop order'
98649539972SJulian Elischer 	 * on the process. The single threader must be allowed
98749539972SJulian Elischer 	 * to continue however as this is a bad place to stop.
98849539972SJulian Elischer 	 */
989*07a9368aSKonstantin Belousov 	if (p->p_numthreads != remain_for_mode(SINGLE_EXIT) &&
990*07a9368aSKonstantin Belousov 	    !P_SHOULDSTOP(p)) {
991ad1e7d28SJulian Elischer                 FOREACH_THREAD_IN_PROC(p, td) {
992a54e85fdSJeff Roberson 			thread_lock(td);
993ad1e7d28SJulian Elischer 			if (TD_IS_SUSPENDED(td)) {
9947847a9daSJohn Baldwin 				wakeup_swapper |= thread_unsuspend_one(td);
99544990b8cSJulian Elischer 			}
996a54e85fdSJeff Roberson 			thread_unlock(td);
99749539972SJulian Elischer 		}
998ad1e7d28SJulian Elischer 	}
9997b4a950aSDavid Xu 	PROC_SUNLOCK(p);
10007847a9daSJohn Baldwin 	if (wakeup_swapper)
10017847a9daSJohn Baldwin 		kick_proc0();
100249539972SJulian Elischer }
10034fc21c09SDaniel Eischen 
100444355392SDavid Xu struct thread *
100544355392SDavid Xu thread_find(struct proc *p, lwpid_t tid)
100644355392SDavid Xu {
100744355392SDavid Xu 	struct thread *td;
100844355392SDavid Xu 
100944355392SDavid Xu 	PROC_LOCK_ASSERT(p, MA_OWNED);
101044355392SDavid Xu 	FOREACH_THREAD_IN_PROC(p, td) {
101144355392SDavid Xu 		if (td->td_tid == tid)
101244355392SDavid Xu 			break;
101344355392SDavid Xu 	}
101444355392SDavid Xu 	return (td);
101544355392SDavid Xu }
1016cf7d9a8cSDavid Xu 
1017cf7d9a8cSDavid Xu /* Locate a thread by number; return with proc lock held. */
1018cf7d9a8cSDavid Xu struct thread *
1019cf7d9a8cSDavid Xu tdfind(lwpid_t tid, pid_t pid)
1020cf7d9a8cSDavid Xu {
1021cf7d9a8cSDavid Xu #define RUN_THRESH	16
1022cf7d9a8cSDavid Xu 	struct thread *td;
1023cf7d9a8cSDavid Xu 	int run = 0;
1024cf7d9a8cSDavid Xu 
1025cf7d9a8cSDavid Xu 	rw_rlock(&tidhash_lock);
1026cf7d9a8cSDavid Xu 	LIST_FOREACH(td, TIDHASH(tid), td_hash) {
1027cf7d9a8cSDavid Xu 		if (td->td_tid == tid) {
1028cf7d9a8cSDavid Xu 			if (pid != -1 && td->td_proc->p_pid != pid) {
1029cf7d9a8cSDavid Xu 				td = NULL;
1030cf7d9a8cSDavid Xu 				break;
1031cf7d9a8cSDavid Xu 			}
10328e6fa660SJohn Baldwin 			PROC_LOCK(td->td_proc);
1033cf7d9a8cSDavid Xu 			if (td->td_proc->p_state == PRS_NEW) {
10348e6fa660SJohn Baldwin 				PROC_UNLOCK(td->td_proc);
1035cf7d9a8cSDavid Xu 				td = NULL;
1036cf7d9a8cSDavid Xu 				break;
1037cf7d9a8cSDavid Xu 			}
1038cf7d9a8cSDavid Xu 			if (run > RUN_THRESH) {
1039cf7d9a8cSDavid Xu 				if (rw_try_upgrade(&tidhash_lock)) {
1040cf7d9a8cSDavid Xu 					LIST_REMOVE(td, td_hash);
1041cf7d9a8cSDavid Xu 					LIST_INSERT_HEAD(TIDHASH(td->td_tid),
1042cf7d9a8cSDavid Xu 						td, td_hash);
1043cf7d9a8cSDavid Xu 					rw_wunlock(&tidhash_lock);
1044cf7d9a8cSDavid Xu 					return (td);
1045cf7d9a8cSDavid Xu 				}
1046cf7d9a8cSDavid Xu 			}
1047cf7d9a8cSDavid Xu 			break;
1048cf7d9a8cSDavid Xu 		}
1049cf7d9a8cSDavid Xu 		run++;
1050cf7d9a8cSDavid Xu 	}
1051cf7d9a8cSDavid Xu 	rw_runlock(&tidhash_lock);
1052cf7d9a8cSDavid Xu 	return (td);
1053cf7d9a8cSDavid Xu }
1054cf7d9a8cSDavid Xu 
1055cf7d9a8cSDavid Xu void
1056cf7d9a8cSDavid Xu tidhash_add(struct thread *td)
1057cf7d9a8cSDavid Xu {
1058cf7d9a8cSDavid Xu 	rw_wlock(&tidhash_lock);
1059cf7d9a8cSDavid Xu 	LIST_INSERT_HEAD(TIDHASH(td->td_tid), td, td_hash);
1060cf7d9a8cSDavid Xu 	rw_wunlock(&tidhash_lock);
1061cf7d9a8cSDavid Xu }
1062cf7d9a8cSDavid Xu 
1063cf7d9a8cSDavid Xu void
1064cf7d9a8cSDavid Xu tidhash_remove(struct thread *td)
1065cf7d9a8cSDavid Xu {
1066cf7d9a8cSDavid Xu 	rw_wlock(&tidhash_lock);
1067cf7d9a8cSDavid Xu 	LIST_REMOVE(td, td_hash);
1068cf7d9a8cSDavid Xu 	rw_wunlock(&tidhash_lock);
1069cf7d9a8cSDavid Xu }
1070