Files
linux-apfs/include/linux/generic_acl.h
T

16 lines
405 B
C
Raw Normal View History

2009-11-03 16:44:44 +01:00
#ifndef LINUX_GENERIC_ACL_H
#define LINUX_GENERIC_ACL_H
2006-09-29 02:01:34 -07:00
2009-11-03 16:44:44 +01:00
#include <linux/xattr.h>
2006-09-29 02:01:34 -07:00
2009-11-03 16:44:44 +01:00
struct inode;
2006-09-29 02:01:34 -07:00
2010-05-13 17:53:14 -07:00
extern const struct xattr_handler generic_acl_access_handler;
extern const struct xattr_handler generic_acl_default_handler;
2006-09-29 02:01:34 -07:00
2009-11-03 16:44:44 +01:00
int generic_acl_init(struct inode *, struct inode *);
int generic_acl_chmod(struct inode *);
int generic_check_acl(struct inode *inode, int mask);
2006-09-29 02:01:34 -07:00
2009-11-03 16:44:44 +01:00
#endif /* LINUX_GENERIC_ACL_H */