diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-03-24 06:15:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:21 -0500 |
commit | c98d8cfbc600af88e9e6cffc84dd342280445760 (patch) | |
tree | bcf88e2905ba6b640e120a7c6529e3dcddb8c130 /fs/coda/coda_int.h | |
parent | 2c2212901f8b3fc84f36cb98150cfc2f6b4752f8 (diff) |
[PATCH] fs/coda/: proper prototypes
Introduce a file fs/coda/coda_int.h with proper prototypes for some code.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: Jan Harkes <jaharkes@cs.cmu.edu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/coda/coda_int.h')
-rw-r--r-- | fs/coda/coda_int.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fs/coda/coda_int.h b/fs/coda/coda_int.h new file mode 100644 index 000000000000..9e6338fea514 --- /dev/null +++ b/fs/coda/coda_int.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #ifndef _CODA_INT_ | ||
2 | #define _CODA_INT_ | ||
3 | |||
4 | extern struct file_system_type coda_fs_type; | ||
5 | |||
6 | void coda_destroy_inodecache(void); | ||
7 | int coda_init_inodecache(void); | ||
8 | int coda_fsync(struct file *coda_file, struct dentry *coda_dentry, | ||
9 | int datasync); | ||
10 | |||
11 | #endif /* _CODA_INT_ */ | ||
12 | |||
13 | |||