diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /fs/nfs/callback.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'fs/nfs/callback.h')
-rw-r--r-- | fs/nfs/callback.h | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/fs/nfs/callback.h b/fs/nfs/callback.h new file mode 100644 index 000000000000..a0db2d4f9415 --- /dev/null +++ b/fs/nfs/callback.h | |||
@@ -0,0 +1,70 @@ | |||
1 | /* | ||
2 | * linux/fs/nfs/callback.h | ||
3 | * | ||
4 | * Copyright (C) 2004 Trond Myklebust | ||
5 | * | ||
6 | * NFSv4 callback definitions | ||
7 | */ | ||
8 | #ifndef __LINUX_FS_NFS_CALLBACK_H | ||
9 | #define __LINUX_FS_NFS_CALLBACK_H | ||
10 | |||
11 | #define NFS4_CALLBACK 0x40000000 | ||
12 | #define NFS4_CALLBACK_XDRSIZE 2048 | ||
13 | #define NFS4_CALLBACK_BUFSIZE (1024 + NFS4_CALLBACK_XDRSIZE) | ||
14 | |||
15 | enum nfs4_callback_procnum { | ||
16 | CB_NULL = 0, | ||
17 | CB_COMPOUND = 1, | ||
18 | }; | ||
19 | |||
20 | enum nfs4_callback_opnum { | ||
21 | OP_CB_GETATTR = 3, | ||
22 | OP_CB_RECALL = 4, | ||
23 | OP_CB_ILLEGAL = 10044, | ||
24 | }; | ||
25 | |||
26 | struct cb_compound_hdr_arg { | ||
27 | int taglen; | ||
28 | const char *tag; | ||
29 | unsigned int callback_ident; | ||
30 | unsigned nops; | ||
31 | }; | ||
32 | |||
33 | struct cb_compound_hdr_res { | ||
34 | uint32_t *status; | ||
35 | int taglen; | ||
36 | const char *tag; | ||
37 | uint32_t *nops; | ||
38 | }; | ||
39 | |||
40 | struct cb_getattrargs { | ||
41 | struct sockaddr_in *addr; | ||
42 | struct nfs_fh fh; | ||
43 | uint32_t bitmap[2]; | ||
44 | }; | ||
45 | |||
46 | struct cb_getattrres { | ||
47 | uint32_t status; | ||
48 | uint32_t bitmap[2]; | ||
49 | uint64_t size; | ||
50 | uint64_t change_attr; | ||
51 | struct timespec ctime; | ||
52 | struct timespec mtime; | ||
53 | }; | ||
54 | |||
55 | struct cb_recallargs { | ||
56 | struct sockaddr_in *addr; | ||
57 | struct nfs_fh fh; | ||
58 | nfs4_stateid stateid; | ||
59 | uint32_t truncate; | ||
60 | }; | ||
61 | |||
62 | extern unsigned nfs4_callback_getattr(struct cb_getattrargs *args, struct cb_getattrres *res); | ||
63 | extern unsigned nfs4_callback_recall(struct cb_recallargs *args, void *dummy); | ||
64 | |||
65 | extern int nfs_callback_up(void); | ||
66 | extern int nfs_callback_down(void); | ||
67 | |||
68 | extern unsigned short nfs_callback_tcpport; | ||
69 | |||
70 | #endif /* __LINUX_FS_NFS_CALLBACK_H */ | ||