aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2017-05-28 15:39:11 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2017-05-28 15:39:11 +0000
commit39999a69986ca5e94457c1f27e70b12424f890ba (patch)
tree83063aacb2556798c3421b651ca0a8c2fcae3924 /sys/modules
parent5a4380b5657fda4a93021acdaff6dfa4d2f59ab6 (diff)
downloadsrc-39999a69986ca5e94457c1f27e70b12424f890ba.tar.gz
src-39999a69986ca5e94457c1f27e70b12424f890ba.zip
Support for linux ext2fs posix-draft ACLs.
This is closely tied to the Extended Attribute implementation. Submitted by: Fedor Uporov Reviewed by: kevlo, pfg Differential Revision: https://reviews.freebsd.org/D10807
Notes
Notes: svn path=/head/; revision=319071
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/ext2fs/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/ext2fs/Makefile b/sys/modules/ext2fs/Makefile
index 03ba089f66f6..64164798e297 100644
--- a/sys/modules/ext2fs/Makefile
+++ b/sys/modules/ext2fs/Makefile
@@ -3,8 +3,8 @@
.PATH: ${SRCTOP}/sys/fs/ext2fs
KMOD= ext2fs
SRCS= opt_ddb.h opt_directio.h opt_quota.h opt_suiddir.h vnode_if.h \
- ext2_alloc.c ext2_balloc.c ext2_bmap.c ext2_extattr.c ext2_extents.c \
- ext2_hash.c ext2_htree.c ext2_inode.c ext2_inode_cnv.c ext2_lookup.c \
- ext2_subr.c ext2_vfsops.c ext2_vnops.c
+ ext2_acl.c ext2_alloc.c ext2_balloc.c ext2_bmap.c ext2_extattr.c \
+ ext2_extents.c ext2_hash.c ext2_htree.c ext2_inode.c ext2_inode_cnv.c \
+ ext2_lookup.c ext2_subr.c ext2_vfsops.c ext2_vnops.c
.include <bsd.kmod.mk>