/* Coda filesystem -- Linux Minicache1*2* Copyright (C) 1989 - 1997 Carnegie Mellon University3*4* Carnegie Mellon University encourages users of this software to5* contribute improvements to the Coda project. Contact Peter Braam6* <[email protected]>7*/89#ifndef _CFSNC_HEADER_10#define _CFSNC_HEADER_1112/* credential cache */13void coda_cache_enter(struct inode *inode, int mask);14void coda_cache_clear_inode(struct inode *);15void coda_cache_clear_all(struct super_block *sb);16int coda_cache_check(struct inode *inode, int mask);1718/* for downcalls and attributes and lookups */19void coda_flag_inode_children(struct inode *inode, int flag);2021#endif /* _CFSNC_HEADER_ */222324