diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-03-24 14:15:53 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 18:33:21 +0300 |
commit | c98d8cfbc600af88e9e6cffc84dd342280445760 (patch) | |
tree | bcf88e2905ba6b640e120a7c6529e3dcddb8c130 /fs/coda/coda_int.h | |
parent | 2c2212901f8b3fc84f36cb98150cfc2f6b4752f8 (diff) | |
download | linux-c98d8cfbc600af88e9e6cffc84dd342280445760.tar.xz |
[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 @@ +#ifndef _CODA_INT_ +#define _CODA_INT_ + +extern struct file_system_type coda_fs_type; + +void coda_destroy_inodecache(void); +int coda_init_inodecache(void); +int coda_fsync(struct file *coda_file, struct dentry *coda_dentry, + int datasync); + +#endif /* _CODA_INT_ */ + + |