diff options
author | Theodore Ts'o <tytso@mit.edu> | 2016-11-27 04:43:09 +0300 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2016-12-12 00:26:08 +0300 |
commit | b98701df349b7003efd52d9330acbb7be5a255c6 (patch) | |
tree | 174ba0b63d628228db2cd899f5fcc8d0337736c1 /include/linux/fscrypto.h | |
parent | 3325bea5b26ac67e2521383f10e5ea0156c9a4b6 (diff) | |
download | linux-b98701df349b7003efd52d9330acbb7be5a255c6.tar.xz |
fscrypt: unexport fscrypt_initialize()
The fscrypt_initalize() function isn't used outside fs/crypto, so
there's no point making it be an exported symbol.
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to 'include/linux/fscrypto.h')
-rw-r--r-- | include/linux/fscrypto.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/fscrypto.h b/include/linux/fscrypto.h index 2f8894f0696c..ce2ebdee6a89 100644 --- a/include/linux/fscrypto.h +++ b/include/linux/fscrypto.h @@ -244,7 +244,6 @@ static inline void fscrypt_set_d_op(struct dentry *dentry) #if IS_ENABLED(CONFIG_FS_ENCRYPTION) /* crypto.c */ extern struct kmem_cache *fscrypt_info_cachep; -int fscrypt_initialize(void); extern struct fscrypt_ctx *fscrypt_get_ctx(const struct inode *, gfp_t); extern void fscrypt_release_ctx(struct fscrypt_ctx *); |