1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
#include "local.h"
#include <linux/interrupt.h>
/* There are at most 32 softirqs in Linux, but only 6 are really used. */
#define NUM_SOFTIRQS 6
DECLARE_INITVAR(dde26_softirq);
/* softirq threads and their wakeup semaphores */
ddekit_thread_t *dde_softirq_thread;
ddekit_sem_t *dde_softirq_sem;
/* struct tasklet_head is not defined in a header in Linux 2.6 */
struct tasklet_head
{
struct tasklet_struct *list;
ddekit_lock_t lock; /* list lock */
};
/* What to do if a softirq occurs. */
static struct softirq_action softirq_vec[32];
/* tasklet queues for each softirq thread */
struct tasklet_head tasklet_vec;
struct tasklet_head tasklet_hi_vec;
void open_softirq(int nr, void (*action)(struct softirq_action*))
{
softirq_vec[nr].action = action;
}
static void raise_softirq_irqoff_cpu(unsigned int nr, unsigned int cpu)
{
CHECK_INITVAR(dde26_softirq);
/* mark softirq scheduled */
__raise_softirq_irqoff(nr);
/* wake softirq thread */
ddekit_sem_up(dde_softirq_sem);
}
void raise_softirq_irqoff(unsigned int nr)
{
raise_softirq_irqoff_cpu(nr, 0);
}
void raise_softirq(unsigned int nr)
{
unsigned long flags;
local_irq_save(flags);
raise_softirq_irqoff(nr);
local_irq_restore(flags);
}
/**
* Initialize tasklet.
*/
void tasklet_init(struct tasklet_struct *t,
void (*func)(unsigned long), unsigned long data)
{
t->next = NULL;
t->state = 0;
atomic_set(&t->count, 0);
t->func = func;
t->data = data;
}
/* enqueue tasklet */
static void __tasklet_enqueue(struct tasklet_struct *t,
struct tasklet_head *listhead)
{
ddekit_lock_lock(&listhead->lock);
t->next = listhead->list;
listhead->list = t;
ddekit_lock_unlock(&listhead->lock);
}
void __tasklet_schedule(struct tasklet_struct *t)
{
unsigned long flags;
CHECK_INITVAR(dde26_softirq);
local_irq_save(flags);
__tasklet_enqueue(t, &tasklet_vec);
/* raise softirq */
raise_softirq_irqoff_cpu(TASKLET_SOFTIRQ, 0);
local_irq_restore(flags);
}
void __tasklet_hi_schedule(struct tasklet_struct *t)
{
unsigned long flags;
CHECK_INITVAR(dde26_softirq);
local_irq_save(flags);
__tasklet_enqueue(t, &tasklet_hi_vec);
raise_softirq_irqoff_cpu(HI_SOFTIRQ, 0);
local_irq_restore(flags);
}
/* Execute tasklets */
static void tasklet_action(struct softirq_action *a)
{
struct tasklet_struct *list;
ddekit_lock_lock(&tasklet_vec.lock);
list = tasklet_vec.list;
tasklet_vec.list = NULL;
ddekit_lock_unlock(&tasklet_vec.lock);
while (list) {
struct tasklet_struct *t = list;
list = list->next;
if (tasklet_trylock(t)) {
if (!atomic_read(&t->count)) {
if (!test_and_clear_bit(TASKLET_STATE_SCHED, &t->state))
BUG();
t->func(t->data);
tasklet_unlock(t);
continue;
}
tasklet_unlock(t);
}
ddekit_lock_lock(&tasklet_vec.lock);
t->next = tasklet_vec.list;
tasklet_vec.list = t;
raise_softirq_irqoff_cpu(TASKLET_SOFTIRQ, 0);
ddekit_lock_unlock(&tasklet_vec.lock);
}
}
static void tasklet_hi_action(struct softirq_action *a)
{
struct tasklet_struct *list;
ddekit_lock_lock(&tasklet_hi_vec.lock);
list = tasklet_hi_vec.list;
tasklet_hi_vec.list = NULL;
ddekit_lock_unlock(&tasklet_hi_vec.lock);
while (list) {
struct tasklet_struct *t = list;
list = list->next;
if (tasklet_trylock(t)) {
if (!atomic_read(&t->count)) {
if (!test_and_clear_bit(TASKLET_STATE_SCHED, &t->state))
BUG();
t->func(t->data);
tasklet_unlock(t);
continue;
}
tasklet_unlock(t);
}
ddekit_lock_lock(&tasklet_hi_vec.lock);
t->next = tasklet_hi_vec.list;
tasklet_hi_vec.list = t;
raise_softirq_irqoff_cpu(HI_SOFTIRQ, 0);
ddekit_lock_unlock(&tasklet_hi_vec.lock);
}
}
#define MAX_SOFTIRQ_RETRIES 10
/** Run softirq handlers
*/
void __do_softirq(void)
{
int retries = MAX_SOFTIRQ_RETRIES;
do {
struct softirq_action *h = softirq_vec;
unsigned long pending = local_softirq_pending();
/* reset softirq count */
set_softirq_pending(0);
/* While we have a softirq pending... */
while (pending) {
/* need to execute current softirq? */
if (pending & 1)
h->action(h);
/* try next softirq */
h++;
/* remove pending flag for last softirq */
pending >>= 1;
}
/* Somebody might have scheduled another softirq in between
* (e.g., an IRQ thread or another tasklet). */
} while (local_softirq_pending() && --retries);
}
void do_softirq(void)
{
unsigned long flags;
local_irq_save(flags);
if (local_softirq_pending())
__do_softirq();
local_irq_restore(flags);
}
/** Softirq thread function.
*
* Once started, a softirq thread waits for tasklets to be scheduled
* and executes them.
*
* \param arg # of this softirq thread so that it grabs the correct lock
* if multiple softirq threads are running.
*/
void l4dde26_softirq_thread(void *arg)
{
printk("Softirq daemon starting\n");
l4dde26_process_add_worker();
/* This thread will always be in a softirq, so set the
* corresponding flag right now.
*/
preempt_count() |= SOFTIRQ_MASK;
while(1) {
ddekit_sem_down(dde_softirq_sem);
do_softirq();
}
}
/** Initialize softirq subsystem.
*
* Start NUM_SOFTIRQ_THREADS threads executing the \ref l4dde26_softirq_thread
* function.
*/
void l4dde26_softirq_init(void)
{
char name[20];
dde_softirq_sem = ddekit_sem_init(0);
set_softirq_pending(0);
ddekit_lock_init_unlocked(&tasklet_vec.lock);
ddekit_lock_init_unlocked(&tasklet_hi_vec.lock);
snprintf(name, 20, ".softirqd");
dde_softirq_thread = ddekit_thread_create(
l4dde26_softirq_thread,
NULL, name);
open_softirq(TASKLET_SOFTIRQ, tasklet_action);
open_softirq(HI_SOFTIRQ, tasklet_hi_action);
INITIALIZE_INITVAR(dde26_softirq);
}
|