fscrypt: introduce fscrypt_needs_contents_encryption()
authorEric Biggers <ebiggers@google.com>
Mon, 9 Dec 2019 20:50:21 +0000 (12:50 -0800)
committerEric Biggers <ebiggers@google.com>
Tue, 31 Dec 2019 16:33:50 +0000 (10:33 -0600)
commit56dce717950925f9d734b9e5621cbd41cbeb3e33
tree7e75057b5c802c825b9b9759f334418f5c322041
parent2ebdef6d8c766ab7da532002091ad486f9db88ed
fscrypt: introduce fscrypt_needs_contents_encryption()

Add a function fscrypt_needs_contents_encryption() which takes an inode
and returns true if it's an encrypted regular file and the kernel was
built with fscrypt support.

This will allow replacing duplicated checks of IS_ENCRYPTED() &&
S_ISREG() on the I/O paths in ext4 and f2fs, while also optimizing out
unneeded code when !CONFIG_FS_ENCRYPTION.

Link: https://lore.kernel.org/r/20191209205021.231767-1-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
include/linux/fscrypt.h