diff options
author | Eric Biggers <ebiggers@google.com> | 2017-02-07 23:42:10 +0300 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2017-02-08 18:59:57 +0300 |
commit | 6f69f0ed6136c302976f8e8f859b73d47f0c0c5c (patch) | |
tree | a0d3d6f76953010e4952b09779a6d3fab13ea205 /fs/ext4 | |
parent | b14c8e6afd873cae97060272efaac376efec77a4 (diff) | |
download | linux-6f69f0ed6136c302976f8e8f859b73d47f0c0c5c.tar.xz |
fscrypt: constify struct fscrypt_operations
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 9d15a6293124..20539c2cd6d8 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -1173,7 +1173,7 @@ static unsigned ext4_max_namelen(struct inode *inode) EXT4_NAME_LEN; } -static struct fscrypt_operations ext4_cryptops = { +static const struct fscrypt_operations ext4_cryptops = { .key_prefix = "ext4:", .get_context = ext4_get_context, .prepare_context = ext4_prepare_context, @@ -1184,7 +1184,7 @@ static struct fscrypt_operations ext4_cryptops = { .max_namelen = ext4_max_namelen, }; #else -static struct fscrypt_operations ext4_cryptops = { +static const struct fscrypt_operations ext4_cryptops = { .is_encrypted = ext4_encrypted_inode, }; #endif |