Commit | Line | Data |
---|---|---|
c98d8cfb AB |
1 | #ifndef _CODA_INT_ |
2 | #define _CODA_INT_ | |
3 | ||
3cf01f28 | 4 | struct dentry; |
8d65af78 | 5 | struct file; |
3cf01f28 | 6 | |
c98d8cfb | 7 | extern struct file_system_type coda_fs_type; |
3cf01f28 JH |
8 | extern unsigned long coda_timeout; |
9 | extern int coda_hard; | |
10 | extern int coda_fake_statfs; | |
c98d8cfb AB |
11 | |
12 | void coda_destroy_inodecache(void); | |
5f356fd4 | 13 | int __init coda_init_inodecache(void); |
02c24a82 | 14 | int coda_fsync(struct file *coda_file, loff_t start, loff_t end, int datasync); |
3cf01f28 JH |
15 | void coda_sysctl_init(void); |
16 | void coda_sysctl_clean(void); | |
c98d8cfb AB |
17 | |
18 | #endif /* _CODA_INT_ */ | |
19 | ||
20 |