aboutsummaryrefslogtreecommitdiffstats
path: root/fs/verity/Makefile
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2019-07-22 09:26:22 -0700
committerEric Biggers <ebiggers@google.com>2019-08-12 19:33:50 -0700
commit3fda4c617e84c21c8a03b7cc2b3dbfe6c6461592 (patch)
treef46447d98e4087e1c3b7a7240c44a80b5fd1ed6c /fs/verity/Makefile
parentfs-verity: add data verification hooks for ->readpages() (diff)
downloadlinux-dev-3fda4c617e84c21c8a03b7cc2b3dbfe6c6461592.tar.xz
linux-dev-3fda4c617e84c21c8a03b7cc2b3dbfe6c6461592.zip
fs-verity: implement FS_IOC_ENABLE_VERITY ioctl
Add a function for filesystems to call to implement the FS_IOC_ENABLE_VERITY ioctl. This ioctl enables fs-verity on a file. See the "FS_IOC_ENABLE_VERITY" section of Documentation/filesystems/fsverity.rst for the documentation. Reviewed-by: Theodore Ts'o <tytso@mit.edu> Reviewed-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to 'fs/verity/Makefile')
-rw-r--r--fs/verity/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/verity/Makefile b/fs/verity/Makefile
index 7fa628cd5eba..04b37475fd28 100644
--- a/fs/verity/Makefile
+++ b/fs/verity/Makefile
@@ -1,6 +1,7 @@
# SPDX-License-Identifier: GPL-2.0
-obj-$(CONFIG_FS_VERITY) += hash_algs.o \
+obj-$(CONFIG_FS_VERITY) += enable.o \
+ hash_algs.o \
init.o \
open.o \
verify.o