/* SPDX-License-Identifier: GPL-2.0 */1/* Coda filesystem -- Linux Minicache2*3* Copyright (C) 1989 - 1997 Carnegie Mellon University4*5* Carnegie Mellon University encourages users of this software to6* contribute improvements to the Coda project. Contact Peter Braam7* <[email protected]>8*/910#ifndef _CFSNC_HEADER_11#define _CFSNC_HEADER_1213/* credential cache */14void coda_cache_enter(struct inode *inode, int mask);15void coda_cache_clear_inode(struct inode *);16void coda_cache_clear_all(struct super_block *sb);17int coda_cache_check(struct inode *inode, int mask);1819/* for downcalls and attributes and lookups */20void coda_flag_inode_children(struct inode *inode, int flag);2122#endif /* _CFSNC_HEADER_ */232425