diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-01-12 16:36:09 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-01-12 20:02:48 -0500 |
commit | 31a203df9c109480fc6d48ba0a68763e89199acb (patch) | |
tree | 6f7f1f839a7d3e3e9010baf10468a33c3ad675ba /fs/coda/coda_cache.h | |
parent | 9501e4c48e1561443e1a16c2c9917ec6c63118a4 (diff) | |
download | talos-obmc-linux-31a203df9c109480fc6d48ba0a68763e89199acb.tar.gz talos-obmc-linux-31a203df9c109480fc6d48ba0a68763e89199acb.zip |
take coda-private headers out of include/linux
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/coda/coda_cache.h')
-rw-r--r-- | fs/coda/coda_cache.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/fs/coda/coda_cache.h b/fs/coda/coda_cache.h new file mode 100644 index 000000000000..c910b5eb1ceb --- /dev/null +++ b/fs/coda/coda_cache.h @@ -0,0 +1,22 @@ +/* Coda filesystem -- Linux Minicache + * + * Copyright (C) 1989 - 1997 Carnegie Mellon University + * + * Carnegie Mellon University encourages users of this software to + * contribute improvements to the Coda project. Contact Peter Braam + * <coda@cs.cmu.edu> + */ + +#ifndef _CFSNC_HEADER_ +#define _CFSNC_HEADER_ + +/* credential cache */ +void coda_cache_enter(struct inode *inode, int mask); +void coda_cache_clear_inode(struct inode *); +void coda_cache_clear_all(struct super_block *sb); +int coda_cache_check(struct inode *inode, int mask); + +/* for downcalls and attributes and lookups */ +void coda_flag_inode_children(struct inode *inode, int flag); + +#endif /* _CFSNC_HEADER_ */ |