mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
6b3bd08f93
This patch adds filename encryption infra. Most of codes are copied from ext4 part, but changed to adjust f2fs directory structure. Signed-off-by: Uday Savagaonkar <savagaon@google.com> Signed-off-by: Ildar Muslukhov <ildarm@google.com> Signed-off-by: Michael Halcrow <mhalcrow@google.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
11 lines
416 B
Makefile
11 lines
416 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-$(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
|
|
f2fs-$(CONFIG_F2FS_FS_ENCRYPTION) += crypto_policy.o crypto.o \
|
|
crypto_key.o crypto_fname.o
|