Properly conditionalize a call to ether_poll_deregister via
[dragonfly.git] / sys / kern / lwkt_serialize.c
1 /*
2  * Copyright (c) 2005 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  * $DragonFly: src/sys/kern/lwkt_serialize.c,v 1.2 2005/05/25 01:44:14 dillon Exp $
35  */
36 /*
37  * This API provides a fast locked-bus-cycle-based serializer.  It's
38  * basically a low level NON-RECURSIVE exclusive lock that can be held across
39  * a blocking condition.  It is NOT a mutex.
40  *
41  * This serializer is primarily designed for low level situations and
42  * interrupt/device interaction.  There are two primary facilities.  First,
43  * the serializer facility itself.  Second, an integrated interrupt handler 
44  * disablement facility.
45  */
46
47 #include <sys/param.h>
48 #include <sys/systm.h>
49 #include <sys/kernel.h>
50 #include <sys/proc.h>
51 #include <sys/rtprio.h>
52 #include <sys/queue.h>
53 #include <sys/thread2.h>
54 #include <sys/serialize.h>
55 #include <sys/sysctl.h>
56 #include <sys/kthread.h>
57 #include <machine/cpu.h>
58 #include <sys/lock.h>
59 #include <sys/caps.h>
60
61 static void lwkt_serialize_sleep(void *info);
62 static void lwkt_serialize_wakeup(void *info);
63
64 void
65 lwkt_serialize_init(lwkt_serialize_t s)
66 {
67     atomic_intr_init(&s->interlock);
68 #ifdef INVARIANTS
69     s->last_td = NULL;
70 #endif
71 }
72
73 void
74 lwkt_serialize_enter(lwkt_serialize_t s)
75 {
76 #ifdef INVARIANTS
77     KKASSERT(s->last_td != curthread);
78 #endif
79     atomic_intr_cond_enter(&s->interlock, lwkt_serialize_sleep, s);
80 #ifdef INVARIANTS
81     s->last_td = curthread;
82 #endif
83 }
84
85 void
86 lwkt_serialize_exit(lwkt_serialize_t s)
87 {
88 #ifdef INVARIANTS
89     s->last_td = NULL;
90 #endif
91     atomic_intr_cond_exit(&s->interlock, lwkt_serialize_wakeup, s);
92 }
93
94 /*
95  * Interrupt handler disablement support, used by drivers.  Non-stackable
96  * (uses bit 30).
97  */
98 void
99 lwkt_serialize_handler_disable(lwkt_serialize_t s)
100 {
101     atomic_intr_handler_disable(&s->interlock);
102 }
103
104 void
105 lwkt_serialize_handler_enable(lwkt_serialize_t s)
106 {
107     atomic_intr_handler_enable(&s->interlock);
108 }
109
110 void
111 lwkt_serialize_handler_call(lwkt_serialize_t s, void (*func)(void *), void *arg)
112 {
113     /*
114      * note: a return value of 0 indicates that the interrupt handler is 
115      * enabled.
116      */
117     if (atomic_intr_handler_is_enabled(&s->interlock) == 0) {
118         atomic_intr_cond_enter(&s->interlock, lwkt_serialize_sleep, s);
119         if (atomic_intr_handler_is_enabled(&s->interlock) == 0)
120             func(arg);
121         atomic_intr_cond_exit(&s->interlock, lwkt_serialize_sleep, s);
122     }
123 }
124
125 /*
126  * Helper functions
127  */
128 static void
129 lwkt_serialize_sleep(void *info)
130 {
131     lwkt_serialize_t s = info;
132     tsleep(s, 0, "slize", 0);
133 }
134
135 static void
136 lwkt_serialize_wakeup(void *info)
137 {
138     wakeup(info);
139 }
140