diff options
author | Eric Biggers <ebiggers@google.com> | 2017-01-24 10:58:06 -0800 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2017-02-06 23:26:43 -0500 |
commit | 46f47e48008b63f5fd3a3bad8b79ba1a89fb625f (patch) | |
tree | 6e0c899bf4c926b9277c95ee2e2c5c8834621a8b /MAINTAINERS | |
parent | 02680b31a0b3757e121d27223b6fe21778f52408 (diff) | |
download | lwn-46f47e48008b63f5fd3a3bad8b79ba1a89fb625f.tar.gz lwn-46f47e48008b63f5fd3a3bad8b79ba1a89fb625f.zip |
fscrypt: split supp and notsupp declarations into their own headers
Previously, each filesystem configured without encryption support would
define all the public fscrypt functions to their notsupp_* stubs. This
list of #defines had to be updated in every filesystem whenever a change
was made to the public fscrypt functions. To make things more
maintainable now that we have three filesystems using fscrypt, split the
old header fscrypto.h into several new headers. fscrypt_supp.h contains
the real declarations and is included by filesystems when configured
with encryption support, whereas fscrypt_notsupp.h contains the inline
stubs and is included by filesystems when configured without encryption
support. fscrypt_common.h contains common declarations needed by both.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'MAINTAINERS')
-rw-r--r-- | MAINTAINERS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index cfff2c9e3d94..4d20b03648fa 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -5268,7 +5268,7 @@ M: Jaegeuk Kim <jaegeuk@kernel.org> L: linux-fsdevel@vger.kernel.org S: Supported F: fs/crypto/ -F: include/linux/fscrypto.h +F: include/linux/fscrypt*.h F2FS FILE SYSTEM M: Jaegeuk Kim <jaegeuk@kernel.org> |