commit | f0c472bcbf1c4a49e0c3403170eb7568a40587bb | [log] [tgz] |
---|---|---|
author | Eric Biggers <ebiggers@google.com> | Fri Jan 05 10:44:55 2018 -0800 |
committer | Jaegeuk Kim <jaegeuk@kernel.org> | Sun Apr 08 02:33:50 2018 -0700 |
tree | e6621e520fa4c942f6b68c51dbeb2ef4a6288b21 | |
parent | bc76f39109b13ee674534b12e91713d9f5c30c95 [diff] |
fscrypt: move fscrypt_ctx declaration to fscrypt_supp.h Filesystems only ever access 'struct fscrypt_ctx' through fscrypt functions. But when a filesystem is built without encryption support, these functions are all stubbed out, so the declaration of fscrypt_ctx is unneeded. Therefore, move it from fscrypt.h to fscrypt_supp.h. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>