[AFS]: Clean up the AFS sources
[linux-2.6/kvm.git] / fs / afs / kafstimod.h
blob0d39becbbe02556cc30305e19954afb9135acbb6
1 /* AFS timeout 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 #ifndef AFS_KAFSTIMOD_H
13 #define AFS_KAFSTIMOD_H
15 #include "types.h"
17 struct afs_timer;
19 struct afs_timer_ops {
20 /* called when the front of the timer queue has timed out */
21 void (*timed_out)(struct afs_timer *);
25 * AFS timer/timeout record
27 struct afs_timer {
28 struct list_head link; /* link in timer queue */
29 unsigned long timo_jif; /* timeout time */
30 const struct afs_timer_ops *ops; /* timeout expiry function */
33 static inline void afs_timer_init(struct afs_timer *timer,
34 const struct afs_timer_ops *ops)
36 INIT_LIST_HEAD(&timer->link);
37 timer->ops = ops;
40 extern int afs_kafstimod_start(void);
41 extern void afs_kafstimod_stop(void);
42 extern void afs_kafstimod_add_timer(struct afs_timer *, unsigned long);
43 extern int afs_kafstimod_del_timer(struct afs_timer *);
45 #endif /* AFS_KAFSTIMOD_H */