diff options
author | Eric Biggers <ebiggers@google.com> | 2017-10-09 12:15:37 -0700 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2017-10-18 19:52:37 -0400 |
commit | f7293e48bb1d0c482cd706deb1256a6be718f4f5 (patch) | |
tree | 133fe0355f6adb4eed0c7108c060889470185b8d /fs/ext4 | |
parent | e0428a266d5a29a3c2eec287fcd49be9e8e2468e (diff) | |
download | op-kernel-dev-f7293e48bb1d0c482cd706deb1256a6be718f4f5.zip op-kernel-dev-f7293e48bb1d0c482cd706deb1256a6be718f4f5.tar.gz |
fscrypt: remove ->is_encrypted()
Now that all callers of fscrypt_operations.is_encrypted() have been
switched to IS_ENCRYPTED(), remove ->is_encrypted().
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Acked-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/super.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index dcfb195..bc63cdf 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -1241,13 +1241,11 @@ static const struct fscrypt_operations ext4_cryptops = { .get_context = ext4_get_context, .set_context = ext4_set_context, .dummy_context = ext4_dummy_context, - .is_encrypted = ext4_encrypted_inode, .empty_dir = ext4_empty_dir, .max_namelen = ext4_max_namelen, }; #else static const struct fscrypt_operations ext4_cryptops = { - .is_encrypted = ext4_encrypted_inode, }; #endif |