diff options
author | Richard Weinberger <richard@nod.at> | 2016-10-21 14:03:19 +0200 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2016-12-12 23:07:38 +0100 |
commit | 1ee77870c9ea954871e4424a7b5ae260fe198b13 (patch) | |
tree | 984ff2968b60402948deb5339b8376bce5d87ccd /fs/ubifs/super.c | |
parent | ubifs: Introduce new data node field, compr_size (diff) | |
download | linux-1ee77870c9ea954871e4424a7b5ae260fe198b13.tar.xz linux-1ee77870c9ea954871e4424a7b5ae260fe198b13.zip |
ubifs: Constify struct inode pointer in ubifs_crypt_is_encrypted()
...and provide a non const variant for fscrypto
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs/super.c')
-rw-r--r-- | fs/ubifs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index e85d5a47aeac..a31222947265 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -2000,7 +2000,7 @@ static struct ubifs_info *alloc_ubifs_info(struct ubi_volume_desc *ubi) #ifndef CONFIG_UBIFS_FS_ENCRYPTION struct fscrypt_operations ubifs_crypt_operations = { - .is_encrypted = ubifs_crypt_is_encrypted, + .is_encrypted = __ubifs_crypt_is_encrypted, }; #endif |