bcachefs-tools/linux/fs.c

15 lines
356 B
C
Raw Normal View History

2017-01-08 12:13:18 +03:00
#include <linux/fs.h>
#include <linux/posix_acl.h>
#include <linux/posix_acl_xattr.h>
#include <linux/xattr.h>
const struct xattr_handler nop_posix_acl_access = {
2017-01-08 12:13:18 +03:00
.name = XATTR_NAME_POSIX_ACL_ACCESS,
.flags = ACL_TYPE_ACCESS,
};
const struct xattr_handler nop_posix_acl_default = {
2017-01-08 12:13:18 +03:00
.name = XATTR_NAME_POSIX_ACL_DEFAULT,
.flags = ACL_TYPE_DEFAULT,
};