mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 02:34:23 +08:00
0c9ec4beec
Support the GETFSMAP ioctls so that we can use the xfs free space management tools to probe ext4 as well. Note that this is a partial implementation -- we only report fixed-location metadata and free space; everything else is reported as "unknown". Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
15 lines
507 B
Makefile
15 lines
507 B
Makefile
#
|
|
# Makefile for the linux ext4-filesystem routines.
|
|
#
|
|
|
|
obj-$(CONFIG_EXT4_FS) += ext4.o
|
|
|
|
ext4-y := balloc.o bitmap.o block_validity.o dir.o ext4_jbd2.o extents.o \
|
|
extents_status.o file.o fsmap.o fsync.o hash.o ialloc.o \
|
|
indirect.o inline.o inode.o ioctl.o mballoc.o migrate.o \
|
|
mmp.o move_extent.o namei.o page-io.o readpage.o resize.o \
|
|
super.o symlink.o sysfs.o xattr.o xattr_trusted.o xattr_user.o
|
|
|
|
ext4-$(CONFIG_EXT4_FS_POSIX_ACL) += acl.o
|
|
ext4-$(CONFIG_EXT4_FS_SECURITY) += xattr_security.o
|