Skip to content

Commit ac27a0e

Browse files
Dave KleikampLinus Torvalds
Dave Kleikamp
authored and
Linus Torvalds
committed
[PATCH] ext4: initial copy of files from ext3
Start of the ext4 patch series. See Documentation/filesystems/ext4.txt for details. This is a simple copy of the files in fs/ext3 to fs/ext4 and /usr/incude/linux/ext3* to /usr/include/ex4* Signed-off-by: Dave Kleikamp <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 502717f commit ac27a0e

26 files changed

+16978
-0
lines changed

fs/ext4/Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# Makefile for the linux ext3-filesystem routines.
3+
#
4+
5+
obj-$(CONFIG_EXT3_FS) += ext3.o
6+
7+
ext3-y := balloc.o bitmap.o dir.o file.o fsync.o ialloc.o inode.o \
8+
ioctl.o namei.o super.o symlink.o hash.o resize.o
9+
10+
ext3-$(CONFIG_EXT3_FS_XATTR) += xattr.o xattr_user.o xattr_trusted.o
11+
ext3-$(CONFIG_EXT3_FS_POSIX_ACL) += acl.o
12+
ext3-$(CONFIG_EXT3_FS_SECURITY) += xattr_security.o

0 commit comments

Comments
 (0)