aboutsummaryrefslogtreecommitdiffstats
path: root/fs/afs/kafsasyncd.h
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2007-04-26 18:49:28 -0400
committerDavid S. Miller <davem@davemloft.net>2007-04-26 18:49:28 -0400
commitec26815ad847dbf74a1e27aa5515fb7d5dc6ee6f (patch)
tree32510ab35b3524f6be9231ab8065b80be5d9b68d /fs/afs/kafsasyncd.h
parent17926a79320afa9b95df6b977b40cca6d8713cea (diff)
[AFS]: Clean up the AFS sources
Clean up the AFS sources. Also remove references to AFS keys. RxRPC keys are used instead. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'fs/afs/kafsasyncd.h')
-rw-r--r--fs/afs/kafsasyncd.h22
1 files changed, 10 insertions, 12 deletions
diff --git a/fs/afs/kafsasyncd.h b/fs/afs/kafsasyncd.h
index 791803f9a6fb..1273eb544c56 100644
--- a/fs/afs/kafsasyncd.h
+++ b/fs/afs/kafsasyncd.h
@@ -1,4 +1,4 @@
1/* kafsasyncd.h: AFS asynchronous operation daemon 1/* AFS asynchronous operation daemon
2 * 2 *
3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved. 3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com) 4 * Written by David Howells (dhowells@redhat.com)
@@ -9,24 +9,22 @@
9 * 2 of the License, or (at your option) any later version. 9 * 2 of the License, or (at your option) any later version.
10 */ 10 */
11 11
12#ifndef _LINUX_AFS_KAFSASYNCD_H 12#ifndef AFS_KAFSASYNCD_H
13#define _LINUX_AFS_KAFSASYNCD_H 13#define AFS_KAFSASYNCD_H
14 14
15#include "types.h" 15#include "types.h"
16 16
17struct afs_async_op; 17struct afs_async_op;
18 18
19struct afs_async_op_ops { 19struct afs_async_op_ops {
20 void (*attend)(struct afs_async_op *op); 20 void (*attend)(struct afs_async_op *);
21 void (*discard)(struct afs_async_op *op); 21 void (*discard)(struct afs_async_op *);
22}; 22};
23 23
24/*****************************************************************************/
25/* 24/*
26 * asynchronous operation record 25 * asynchronous operation record
27 */ 26 */
28struct afs_async_op 27struct afs_async_op {
29{
30 struct list_head link; 28 struct list_head link;
31 struct afs_server *server; /* server being contacted */ 29 struct afs_server *server; /* server being contacted */
32 struct rxrpc_call *call; /* RxRPC call performing op */ 30 struct rxrpc_call *call; /* RxRPC call performing op */
@@ -45,8 +43,8 @@ static inline void afs_async_op_init(struct afs_async_op *op,
45extern int afs_kafsasyncd_start(void); 43extern int afs_kafsasyncd_start(void);
46extern void afs_kafsasyncd_stop(void); 44extern void afs_kafsasyncd_stop(void);
47 45
48extern void afs_kafsasyncd_begin_op(struct afs_async_op *op); 46extern void afs_kafsasyncd_begin_op(struct afs_async_op *);
49extern void afs_kafsasyncd_attend_op(struct afs_async_op *op); 47extern void afs_kafsasyncd_attend_op(struct afs_async_op *);
50extern void afs_kafsasyncd_terminate_op(struct afs_async_op *op); 48extern void afs_kafsasyncd_terminate_op(struct afs_async_op *);
51 49
52#endif /* _LINUX_AFS_KAFSASYNCD_H */ 50#endif /* AFS_KAFSASYNCD_H */