summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTheodore Y. Ts'o <tytso@snap.thunk.org>2002-10-30 16:34:21 -0500
committerLinus Torvalds <torvalds@penguin.transmeta.com>2002-10-30 16:34:21 -0500
commit12538ad058cb1abe71fc99e7c7283bd3b7cb0d59 (patch)
tree6bfd82785e6b9722d47adb907914cf1ac8ac5a1d /include
parent651d4694e05ecca7372d6b364263bde8a3fafe28 (diff)
Port of (bugfixed) 0.8.50 acl-ext2 to 2.5
This patch adds ACL support to the ext2 filesystem.
Diffstat (limited to 'include')
-rw-r--r--include/linux/ext2_fs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/ext2_fs.h b/include/linux/ext2_fs.h
index 178263584314..7e34cc751800 100644
--- a/include/linux/ext2_fs.h
+++ b/include/linux/ext2_fs.h
@@ -308,6 +308,7 @@ struct ext2_inode {
#define EXT2_MOUNT_MINIX_DF 0x0080 /* Mimics the Minix statfs */
#define EXT2_MOUNT_NO_UID32 0x0200 /* Disable 32-bit UIDs */
#define EXT2_MOUNT_XATTR_USER 0x4000 /* Extended user attributes */
+#define EXT2_MOUNT_POSIX_ACL 0x8000 /* POSIX Access Control Lists */
#define clear_opt(o, opt) o &= ~EXT2_MOUNT_##opt
#define set_opt(o, opt) o |= EXT2_MOUNT_##opt