Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* Coda filesystem -- Linux Minicache
0003  *
0004  * Copyright (C) 1989 - 1997 Carnegie Mellon University
0005  *
0006  * Carnegie Mellon University encourages users of this software to
0007  * contribute improvements to the Coda project. Contact Peter Braam
0008  * <coda@cs.cmu.edu>
0009  */
0010 
0011 #ifndef _CFSNC_HEADER_
0012 #define _CFSNC_HEADER_
0013 
0014 /* credential cache */
0015 void coda_cache_enter(struct inode *inode, int mask);
0016 void coda_cache_clear_inode(struct inode *);
0017 void coda_cache_clear_all(struct super_block *sb);
0018 int coda_cache_check(struct inode *inode, int mask);
0019 
0020 /* for downcalls and attributes and lookups */
0021 void coda_flag_inode_children(struct inode *inode, int flag);
0022 
0023 #endif /* _CFSNC_HEADER_ */