generic_acl.h 393 B

123456789101112131415
  1. #ifndef LINUX_GENERIC_ACL_H
  2. #define LINUX_GENERIC_ACL_H
  3. #include <linux/xattr.h>
  4. struct inode;
  5. extern struct xattr_handler generic_acl_access_handler;
  6. extern struct xattr_handler generic_acl_default_handler;
  7. int generic_acl_init(struct inode *, struct inode *);
  8. int generic_acl_chmod(struct inode *);
  9. int generic_check_acl(struct inode *inode, int mask);
  10. #endif /* LINUX_GENERIC_ACL_H */