mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
8ceffcb29e
Codes related to sysfs and procfs are dispersive and mixed with sb related codes, but actually these codes are independent from others, so split them from super.c, and reorgnize and manger them in sysfs.c. Signed-off-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
10 lines
367 B
Makefile
10 lines
367 B
Makefile
obj-$(CONFIG_F2FS_FS) += f2fs.o
|
|
|
|
f2fs-y := dir.o file.o inode.o namei.o hash.o super.o inline.o
|
|
f2fs-y += checkpoint.o gc.o data.o node.o segment.o recovery.o
|
|
f2fs-y += shrinker.o extent_cache.o sysfs.o
|
|
f2fs-$(CONFIG_F2FS_STAT_FS) += debug.o
|
|
f2fs-$(CONFIG_F2FS_FS_XATTR) += xattr.o
|
|
f2fs-$(CONFIG_F2FS_FS_POSIX_ACL) += acl.o
|
|
f2fs-$(CONFIG_F2FS_IO_TRACE) += trace.o
|