#include <linux/kernel.h>
#include <linux/atomic.h>
#include <linux/posix_acl.h>
#include <linux/posix_acl_xattr.h>
#include <linux/export.h>
#include <linux/user_namespace.h>
static struct posix_acl **acl_by_type(struct inode *inode, int type)
return &inode->i_default_acl;
struct posix_acl *get_cached_acl(struct inode *inode, int type)
struct posix_acl **p = acl_by_type(inode, type);
acl = rcu_dereference(*p);
if (!acl || is_uncached_acl(acl) ||
refcount_inc_not_zero(&acl->a_refcount))
EXPORT_SYMBOL(get_cached_acl);
struct posix_acl *get_cached_acl_rcu(struct inode *inode, int type)
return rcu_dereference(*acl_by_type(inode, type));
EXPORT_SYMBOL(get_cached_acl_rcu);
void set_cached_acl(struct inode *inode, int type, struct posix_acl *acl)
struct posix_acl **p = acl_by_type(inode, type);
old = xchg(p, posix_acl_dup(acl));
if (!is_uncached_acl(old))
EXPORT_SYMBOL(set_cached_acl);
static void __forget_cached_acl(struct posix_acl **p)
old = xchg(p, ACL_NOT_CACHED);
if (!is_uncached_acl(old))
void forget_cached_acl(struct inode *inode, int type)
__forget_cached_acl(acl_by_type(inode, type));
EXPORT_SYMBOL(forget_cached_acl);
void forget_all_cached_acls(struct inode *inode)
__forget_cached_acl(&inode->i_acl);
__forget_cached_acl(&inode->i_default_acl);