uts: make emu10k non-verbose
[unleashed.git] / kernel / os / serializer.c
blobe5f11fe8b1aaf9dca891513d6bd8a30371ffb03e
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
23 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #pragma ident "%Z%%M% %I% %E% SMI"
30 * Kernel protection serializers: general purpose synchronization mechanism.
32 * Serializers provide a simple way to serialize access to some resource. They
33 * can be used as an alternative to locks or STREAMS perimeters. They scale
34 * much better than STREAMS outer serializers.
36 * Serializer is an abstraction that guarantees that all functions executed
37 * within the serializer are serialized: they are executed in the order they
38 * entered serializer one at a time.
40 * INTERFACES:
42 * serializer_t *serializer_create(flags);
44 * Create a serializer. The flags may be either SER_SLEEP or SER_NOSLEEP
45 * which are the same as KM_SLEEP and KM_NOSLEEP respectively.
47 * serializer_enter(serializer, proc, mblk, arg);
49 * Execute 'proc(mblk, arg)' within the serializer.
51 * serializer_wait(serializer);
53 * Wait for pending serializer jobs to complete. This function should never
54 * be called within the serializer or it will deadlock.
56 * serializer_destroy(serializer);
58 * Destroy serializer.
60 * Serializers export three DTrace SDT probes:
62 * serializer-enqueue(serializer, mblk, arg, proc)
64 * The probe triggers when serializer is busy and the request is
65 * queued.
67 * serializer-exec-start(serializer, mblk, arg, proc)
69 * The probe triggers before the request is executed
71 * serializer-exec-end(serializer, mblk, arg, proc)
73 * The probe triggers after the request is executed
76 * IMPLEMENTATION.
78 * Serializer consists of a "owner" and a list of queued jobs. The first thread
79 * entering serializer sets the owner and executes its job directly without
80 * context switch. Then it processes jobs which may have been enqueued while it
81 * was executing a job and drops the owner, leaving the serializer empty. Any
82 * thread entering an owned serializer enqueues its job and returns immediately.
84 * Serializer data structure holds several fields used for debugging only. They
85 * are not relevant for the proper serializer functioning.
87 * When new requests arrive faster then they are processed it is possible that a
88 * thread that started processing serializer will continue doing so for a long
89 * time. To avoid such pathological behavior the amount of requests drained by
90 * serializer_enter() is limited by `serializer_credit' value. After the credit
91 * is expired serializer_enter() schedules a taskq request to continue draining.
92 * The taskq thread draining is not limited by serializer_credit. Note that it
93 * is possible that another serializer_enter() will drain the serializer before
94 * a taskq thread will get to it.
97 #include <sys/types.h>
98 #include <sys/kmem.h>
99 #include <sys/thread.h>
100 #include <sys/mutex.h>
101 #include <sys/systm.h>
102 #include <sys/debug.h>
103 #include <sys/taskq.h>
104 #include <sys/sdt.h>
105 #include <sys/serializer.h>
107 #define SERIALIZER_NAMELEN 31
110 * Serializer abstraction.
111 * Fields marked (D) are used for debugging purposes only.
113 struct serializer_s {
114 kmutex_t ser_lock; /* Protects state and the list */
115 kthread_t *ser_owner; /* Thread executing serializer */
116 ushort_t ser_taskq; /* Serializer scheduled for taskq */
117 kcondvar_t ser_cv; /* For serializer-wait */
118 uint_t ser_count; /* # of queued requests (D) */
119 mblk_t *ser_first; /* First message in the queue */
120 mblk_t *ser_last; /* Last message in the queue */
121 srproc_t *ser_proc; /* Currently executing proc (D) */
122 mblk_t *ser_curr; /* Currently executing msg (D) */
123 void *ser_arg; /* Currently executing arg (D) */
126 static kmem_cache_t *serializer_cache;
129 * How many drains are allowed before we switch to taskq processing.
131 #define SERIALIZER_CREDIT 10
132 static int serializer_credit = SERIALIZER_CREDIT;
134 /* Statistics for debugging */
135 static int perim_context_swtch = 0;
137 static int serializer_constructor(void *, void *, int);
138 static void serializer_destructor(void *, void *);
139 static void serializer_exec(serializer_t *, srproc_t, mblk_t *, void *);
140 static void serializer_enqueue(serializer_t *, srproc_t, mblk_t *, void *);
141 static void serializer_drain(serializer_t *, int);
142 static void serializer_drain_completely(serializer_t *);
145 * SERIALIZER Implementation.
149 * Record debugging information and execute single request.
151 static void
152 serializer_exec(serializer_t *s, srproc_t proc, mblk_t *mp, void *arg)
154 ASSERT(MUTEX_NOT_HELD(&s->ser_lock));
155 ASSERT(s->ser_owner == curthread);
157 ASSERT(proc != NULL);
158 ASSERT(mp != NULL);
160 s->ser_curr = mp;
161 s->ser_arg = arg;
162 s->ser_proc = proc;
163 proc(mp, arg);
167 * Enqueue a single request on serializer.
169 static void
170 serializer_enqueue(serializer_t *s, srproc_t proc, mblk_t *mp, void *arg)
172 ASSERT(MUTEX_HELD(&s->ser_lock));
174 DTRACE_PROBE4(serializer__enqueue, serializer_t *, s,
175 mblk_t *, mp, void *, arg, srproc_t, proc);
176 s->ser_count++;
177 mp->b_queue = (queue_t *)proc;
178 mp->b_prev = (mblk_t *)arg;
179 if (s->ser_last != NULL)
180 s->ser_last->b_next = mp;
181 else
182 s->ser_first = mp;
183 s->ser_last = mp;
187 * Drain serializer, limiting drain to `credit' requests at most.
189 static void
190 serializer_drain(serializer_t *s, int credit)
192 mblk_t *mp = s->ser_first;
194 ASSERT(MUTEX_HELD(&s->ser_lock));
195 ASSERT(s->ser_owner == curthread);
197 for (; mp != NULL && credit-- != 0; mp = s->ser_first) {
198 srproc_t *proc = (srproc_t *)mp->b_queue;
199 void *arg = mp->b_prev;
201 if ((s->ser_first = s->ser_first->b_next) == NULL) {
202 s->ser_last = NULL;
203 } else {
204 mp->b_next = NULL;
206 ASSERT(s->ser_count != 0);
207 s->ser_count--;
208 mp->b_queue = NULL;
209 mp->b_prev = NULL;
210 mutex_exit(&s->ser_lock);
212 DTRACE_PROBE4(serializer__exec__start, serializer_t *, s,
213 mblk_t *, mp, void *, arg, srproc_t, proc);
214 serializer_exec(s, proc, mp, arg);
215 DTRACE_PROBE4(serializer__exec__end, serializer_t *, s,
216 mblk_t *, mp, void *, arg, srproc_t, proc);
218 mutex_enter(&s->ser_lock);
223 * Drain serializer completely if serializer is free.
225 static void
226 serializer_drain_completely(serializer_t *s)
228 mutex_enter(&s->ser_lock);
229 ASSERT(s->ser_taskq);
230 if (s->ser_owner == NULL) {
231 s->ser_owner = curthread;
232 while (s->ser_first != NULL)
233 serializer_drain(s, INT_MAX);
234 s->ser_owner = NULL;
235 s->ser_curr = NULL;
236 s->ser_proc = NULL;
237 s->ser_arg = NULL;
239 s->ser_taskq = B_FALSE;
241 * Wake up serializer_wait().
243 cv_signal(&s->ser_cv);
244 mutex_exit(&s->ser_lock);
248 * Call proc(mp, arg) within serializer.
250 * If serializer is empty and not owned, proc(mp, arg) is called right
251 * away. Otherwise the request is queued.
253 void
254 serializer_enter(serializer_t *s, srproc_t proc, mblk_t *mp, void *arg)
256 ASSERT(proc != NULL);
257 ASSERT(mp != NULL);
258 ASSERT(mp->b_next == NULL);
259 ASSERT(mp->b_prev == NULL);
261 ASSERT(MUTEX_NOT_HELD(&s->ser_lock));
263 mutex_enter(&s->ser_lock);
264 if (s->ser_owner != NULL) {
266 * Serializer is owned. Enqueue and return.
268 serializer_enqueue(s, proc, mp, arg);
269 } else {
270 taskqid_t tid = 0;
273 * If the request list is empty, can process right away,
274 * otherwise enqueue and process.
276 s->ser_owner = curthread;
278 if (s->ser_first != NULL) {
279 ASSERT(s->ser_count != 0);
280 serializer_enqueue(s, proc, mp, arg);
281 } else {
282 ASSERT(s->ser_count == 0);
283 mutex_exit(&s->ser_lock);
285 * Execute request
287 DTRACE_PROBE4(serializer__exec__start,
288 serializer_t *, s, mblk_t *, mp,
289 void *, arg, srproc_t, proc);
290 serializer_exec(s, proc, mp, arg);
291 DTRACE_PROBE4(serializer__exec__end,
292 serializer_t *, s, mblk_t *, mp,
293 void *, arg, srproc_t, proc);
294 mutex_enter(&s->ser_lock);
298 * Drain whatever has arrived in the meantime.
299 * If we spend too much time draining, continue draining by the
300 * taskq thread.
302 while ((s->ser_first != NULL) && (tid == 0)) {
303 serializer_drain(s, serializer_credit);
304 if (s->ser_first != NULL) {
305 perim_context_swtch++;
307 * If there is a taskq pending for this
308 * serializer, no need to schedule a new one.
310 if (s->ser_taskq) {
311 break;
312 } else {
313 tid = taskq_dispatch(system_taskq,
314 (task_func_t *)
315 serializer_drain_completely,
316 s, TQ_NOSLEEP | TQ_NOQUEUE);
317 if (tid != 0)
318 s->ser_taskq = B_TRUE;
322 s->ser_owner = NULL;
323 s->ser_curr = NULL;
324 s->ser_proc = NULL;
325 s->ser_arg = NULL;
328 * Wakeup serializer_wait().
330 cv_signal(&s->ser_cv);
331 mutex_exit(&s->ser_lock);
335 * Wait for pending serializer jobs to complete. This function should never be
336 * called within the serializer or it will deadlock.
338 void
339 serializer_wait(serializer_t *s)
341 mutex_enter(&s->ser_lock);
343 ASSERT(s->ser_owner != curthread);
345 while ((s->ser_owner != NULL) || s->ser_taskq || (s->ser_first != NULL))
346 cv_wait(&s->ser_cv, &s->ser_lock);
347 ASSERT((s->ser_first == NULL) && (s->ser_last == NULL));
349 * Wakeup other potential waiters.
351 cv_signal(&s->ser_cv);
352 mutex_exit(&s->ser_lock);
356 * Create a new serializer.
358 serializer_t *
359 serializer_create(int flags)
361 return (kmem_cache_alloc(serializer_cache, flags));
365 * Wait for all pending entries to drain and then destroy serializer.
367 void
368 serializer_destroy(serializer_t *s)
370 serializer_wait(s);
372 ASSERT(s->ser_owner == NULL);
373 ASSERT(s->ser_taskq == 0);
374 ASSERT(s->ser_count == 0);
375 ASSERT(s->ser_first == NULL);
376 ASSERT(s->ser_last == NULL);
378 kmem_cache_free(serializer_cache, s);
381 /*ARGSUSED*/
382 static int
383 serializer_constructor(void *buf, void *cdrarg, int kmflags)
385 serializer_t *s = buf;
387 mutex_init(&s->ser_lock, NULL, MUTEX_DEFAULT, NULL);
388 cv_init(&s->ser_cv, NULL, CV_DEFAULT, NULL);
390 s->ser_taskq = 0;
391 s->ser_count = 0;
392 s->ser_first = s->ser_last = s->ser_curr = NULL;
393 s->ser_proc = NULL;
394 s->ser_arg = NULL;
395 s->ser_owner = NULL;
396 return (0);
399 /*ARGSUSED*/
400 static void
401 serializer_destructor(void *buf, void *cdrarg)
403 serializer_t *s = buf;
405 mutex_destroy(&s->ser_lock);
406 cv_destroy(&s->ser_cv);
409 void
410 serializer_init(void)
412 serializer_cache = kmem_cache_create("serializer_cache",
413 sizeof (serializer_t), 0, serializer_constructor,
414 serializer_destructor, NULL, NULL, NULL, 0);