mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
8d65af789f
It's unused. It isn't needed -- read or write flag is already passed and sysctl shouldn't care about the rest. It _was_ used in two places at arch/frv for some reason. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Cc: David Howells <dhowells@redhat.com> Cc: "Eric W. Biederman" <ebiederm@xmission.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: "David S. Miller" <davem@davemloft.net> Cc: James Morris <jmorris@namei.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
22 lines
447 B
C
22 lines
447 B
C
#ifndef _CODA_INT_
|
|
#define _CODA_INT_
|
|
|
|
struct dentry;
|
|
struct file;
|
|
|
|
extern struct file_system_type coda_fs_type;
|
|
extern unsigned long coda_timeout;
|
|
extern int coda_hard;
|
|
extern int coda_fake_statfs;
|
|
|
|
void coda_destroy_inodecache(void);
|
|
int coda_init_inodecache(void);
|
|
int coda_fsync(struct file *coda_file, struct dentry *coda_dentry,
|
|
int datasync);
|
|
void coda_sysctl_init(void);
|
|
void coda_sysctl_clean(void);
|
|
|
|
#endif /* _CODA_INT_ */
|
|
|
|
|