0001
0002 #ifndef _CODA_INT_
0003 #define _CODA_INT_
0004
0005 struct dentry;
0006 struct file;
0007
0008 extern struct file_system_type coda_fs_type;
0009 extern unsigned long coda_timeout;
0010 extern int coda_hard;
0011 extern int coda_fake_statfs;
0012
0013 void coda_destroy_inodecache(void);
0014 int __init coda_init_inodecache(void);
0015 int coda_fsync(struct file *coda_file, loff_t start, loff_t end, int datasync);
0016
0017 #ifdef CONFIG_SYSCTL
0018 void coda_sysctl_init(void);
0019 void coda_sysctl_clean(void);
0020 #else
0021 static inline void coda_sysctl_init(void)
0022 {
0023 }
0024
0025 static inline void coda_sysctl_clean(void)
0026 {
0027 }
0028 #endif
0029 #endif
0030
0031