MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / fs / afs / kafsasyncd.c
blob9c88da3be429da9012894931e969516464f3bb16
1 /* kafsasyncd.c: AFS asynchronous operation daemon
3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 * The AFS async daemon is used to the following:
13 * - probe "dead" servers to see whether they've come back to life yet.
14 * - probe "live" servers that we haven't talked to for a while to see if they are better
15 * candidates for serving than what we're currently using
16 * - poll volume location servers to keep up to date volume location lists
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/sched.h>
22 #include <linux/completion.h>
23 #include "cell.h"
24 #include "server.h"
25 #include "volume.h"
26 #include "kafsasyncd.h"
27 #include "kafstimod.h"
28 #include <rxrpc/call.h>
29 #include <asm/errno.h>
30 #include "internal.h"
32 static DECLARE_COMPLETION(kafsasyncd_alive);
33 static DECLARE_COMPLETION(kafsasyncd_dead);
34 static DECLARE_WAIT_QUEUE_HEAD(kafsasyncd_sleepq);
35 static struct task_struct *kafsasyncd_task;
36 static int kafsasyncd_die;
38 static int kafsasyncd(void *arg);
40 static LIST_HEAD(kafsasyncd_async_attnq);
41 static LIST_HEAD(kafsasyncd_async_busyq);
42 static spinlock_t kafsasyncd_async_lock = SPIN_LOCK_UNLOCKED;
44 static void kafsasyncd_null_call_attn_func(struct rxrpc_call *call)
48 static void kafsasyncd_null_call_error_func(struct rxrpc_call *call)
52 /*****************************************************************************/
54 * start the async daemon
56 int afs_kafsasyncd_start(void)
58 int ret;
60 ret = kernel_thread(kafsasyncd, NULL, 0);
61 if (ret < 0)
62 return ret;
64 wait_for_completion(&kafsasyncd_alive);
66 return ret;
67 } /* end afs_kafsasyncd_start() */
69 /*****************************************************************************/
71 * stop the async daemon
73 void afs_kafsasyncd_stop(void)
75 /* get rid of my daemon */
76 kafsasyncd_die = 1;
77 wake_up(&kafsasyncd_sleepq);
78 wait_for_completion(&kafsasyncd_dead);
80 } /* end afs_kafsasyncd_stop() */
82 /*****************************************************************************/
84 * probing daemon
86 static int kafsasyncd(void *arg)
88 struct afs_async_op *op;
89 int die;
91 DECLARE_WAITQUEUE(myself, current);
93 kafsasyncd_task = current;
95 printk("kAFS: Started kafsasyncd %d\n", current->pid);
97 daemonize("kafsasyncd");
99 complete(&kafsasyncd_alive);
101 /* loop around looking for things to attend to */
102 do {
103 set_current_state(TASK_INTERRUPTIBLE);
104 add_wait_queue(&kafsasyncd_sleepq, &myself);
106 for (;;) {
107 if (!list_empty(&kafsasyncd_async_attnq) ||
108 signal_pending(current) ||
109 kafsasyncd_die)
110 break;
112 schedule();
113 set_current_state(TASK_INTERRUPTIBLE);
116 remove_wait_queue(&kafsasyncd_sleepq, &myself);
117 set_current_state(TASK_RUNNING);
119 /* discard pending signals */
120 afs_discard_my_signals();
122 die = kafsasyncd_die;
124 /* deal with the next asynchronous operation requiring
125 * attention */
126 if (!list_empty(&kafsasyncd_async_attnq)) {
127 struct afs_async_op *op;
129 _debug("@@@ Begin Asynchronous Operation");
131 op = NULL;
132 spin_lock(&kafsasyncd_async_lock);
134 if (!list_empty(&kafsasyncd_async_attnq)) {
135 op = list_entry(kafsasyncd_async_attnq.next,
136 struct afs_async_op, link);
137 list_del(&op->link);
138 list_add_tail(&op->link,
139 &kafsasyncd_async_busyq);
142 spin_unlock(&kafsasyncd_async_lock);
144 _debug("@@@ Operation %p {%p}\n",
145 op, op ? op->ops : NULL);
147 if (op)
148 op->ops->attend(op);
150 _debug("@@@ End Asynchronous Operation");
153 } while(!die);
155 /* need to kill all outstanding asynchronous operations before
156 * exiting */
157 kafsasyncd_task = NULL;
158 spin_lock(&kafsasyncd_async_lock);
160 /* fold the busy and attention queues together */
161 list_splice_init(&kafsasyncd_async_busyq,
162 &kafsasyncd_async_attnq);
164 /* dequeue kafsasyncd from all their wait queues */
165 list_for_each_entry(op, &kafsasyncd_async_attnq, link) {
166 op->call->app_attn_func = kafsasyncd_null_call_attn_func;
167 op->call->app_error_func = kafsasyncd_null_call_error_func;
168 remove_wait_queue(&op->call->waitq, &op->waiter);
171 spin_unlock(&kafsasyncd_async_lock);
173 /* abort all the operations */
174 while (!list_empty(&kafsasyncd_async_attnq)) {
175 op = list_entry(kafsasyncd_async_attnq.next, struct afs_async_op, link);
176 list_del_init(&op->link);
178 rxrpc_call_abort(op->call, -EIO);
179 rxrpc_put_call(op->call);
180 op->call = NULL;
182 op->ops->discard(op);
185 /* and that's all */
186 _leave("");
187 complete_and_exit(&kafsasyncd_dead, 0);
189 } /* end kafsasyncd() */
191 /*****************************************************************************/
193 * begin an operation
194 * - place operation on busy queue
196 void afs_kafsasyncd_begin_op(struct afs_async_op *op)
198 _enter("");
200 spin_lock(&kafsasyncd_async_lock);
202 init_waitqueue_entry(&op->waiter, kafsasyncd_task);
203 add_wait_queue(&op->call->waitq, &op->waiter);
205 list_del(&op->link);
206 list_add_tail(&op->link, &kafsasyncd_async_busyq);
208 spin_unlock(&kafsasyncd_async_lock);
210 _leave("");
211 } /* end afs_kafsasyncd_begin_op() */
213 /*****************************************************************************/
215 * request attention for an operation
216 * - move to attention queue
218 void afs_kafsasyncd_attend_op(struct afs_async_op *op)
220 _enter("");
222 spin_lock(&kafsasyncd_async_lock);
224 list_del(&op->link);
225 list_add_tail(&op->link, &kafsasyncd_async_attnq);
227 spin_unlock(&kafsasyncd_async_lock);
229 wake_up(&kafsasyncd_sleepq);
231 _leave("");
232 } /* end afs_kafsasyncd_attend_op() */
234 /*****************************************************************************/
236 * terminate an operation
237 * - remove from either queue
239 void afs_kafsasyncd_terminate_op(struct afs_async_op *op)
241 _enter("");
243 spin_lock(&kafsasyncd_async_lock);
245 if (!list_empty(&op->link)) {
246 list_del_init(&op->link);
247 remove_wait_queue(&op->call->waitq, &op->waiter);
250 spin_unlock(&kafsasyncd_async_lock);
252 wake_up(&kafsasyncd_sleepq);
254 _leave("");
255 } /* end afs_kafsasyncd_terminate_op() */