fscrypt: clean up after fscrypt_prepare_lookup() conversions
authorEric Biggers <ebiggers@google.com>
Mon, 30 Apr 2018 22:51:36 +0000 (15:51 -0700)
committerJaegeuk Kim <jaegeuk@kernel.org>
Thu, 28 Jun 2018 16:37:40 +0000 (09:37 -0700)
Now that all filesystems have been converted to use
fscrypt_prepare_lookup(), we can remove the fscrypt_set_d_op() and
fscrypt_set_encrypted_dentry() functions as well as un-export
fscrypt_d_ops.

Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/crypto/crypto.c
fs/crypto/fscrypt_private.h
include/linux/fscrypt_notsupp.h
include/linux/fscrypt_supp.h

index 2f646b1248bca7e85403c547ff94d13d7a54ec3f..a00efa266eb5f21cc935037fd242f5b230d0925d 100644 (file)
@@ -359,7 +359,6 @@ static int fscrypt_d_revalidate(struct dentry *dentry, unsigned int flags)
 const struct dentry_operations fscrypt_d_ops = {
        .d_revalidate = fscrypt_d_revalidate,
 };
-EXPORT_SYMBOL(fscrypt_d_ops);
 
 void fscrypt_restore_control_page(struct page *page)
 {
index 4012558f611530a9ed644e3282efff31d6fde534..05e0f88c4a7032a754cdecbfcccdd85140689971 100644 (file)
@@ -105,6 +105,7 @@ extern int fscrypt_do_page_crypto(const struct inode *inode,
                                  gfp_t gfp_flags);
 extern struct page *fscrypt_alloc_bounce_page(struct fscrypt_ctx *ctx,
                                              gfp_t gfp_flags);
+extern const struct dentry_operations fscrypt_d_ops;
 
 /* fname.c */
 extern int fname_encrypt(struct inode *inode, const struct qstr *iname,
index 9770be37c9d421fedce25fb534b6408362c10cbe..ee8b43e4c15a615bbddc93e8869668eba100f1b9 100644 (file)
@@ -68,16 +68,6 @@ static inline void fscrypt_restore_control_page(struct page *page)
        return;
 }
 
-static inline void fscrypt_set_d_op(struct dentry *dentry)
-{
-       return;
-}
-
-static inline void fscrypt_set_encrypted_dentry(struct dentry *dentry)
-{
-       return;
-}
-
 /* policy.c */
 static inline int fscrypt_ioctl_set_policy(struct file *filp,
                                           const void __user *arg)
index 2c9a86ac5e83b9b63f1b95680d9a711d57e0b659..73c3204d51431ecc337efbf06b1d038558674d9e 100644 (file)
@@ -75,20 +75,6 @@ static inline struct page *fscrypt_control_page(struct page *page)
 
 extern void fscrypt_restore_control_page(struct page *);
 
-extern const struct dentry_operations fscrypt_d_ops;
-
-static inline void fscrypt_set_d_op(struct dentry *dentry)
-{
-       d_set_d_op(dentry, &fscrypt_d_ops);
-}
-
-static inline void fscrypt_set_encrypted_dentry(struct dentry *dentry)
-{
-       spin_lock(&dentry->d_lock);
-       dentry->d_flags |= DCACHE_ENCRYPTED_WITH_KEY;
-       spin_unlock(&dentry->d_lock);
-}
-
 /* policy.c */
 extern int fscrypt_ioctl_set_policy(struct file *, const void __user *);
 extern int fscrypt_ioctl_get_policy(struct file *, void __user *);