commit | 1ee77870c9ea954871e4424a7b5ae260fe198b13 | [log] [tgz] |
---|---|---|
author | Richard Weinberger <richard@nod.at> | Fri Oct 21 14:03:19 2016 +0200 |
committer | Richard Weinberger <richard@nod.at> | Mon Dec 12 23:07:38 2016 +0100 |
tree | 984ff2968b60402948deb5339b8376bce5d87ccd | |
parent | f1f52d6b029776bef4a60cc30011a81f0420a873 [diff] [blame] |
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>
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index e85d5a4..a312229 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c
@@ -2000,7 +2000,7 @@ #ifndef CONFIG_UBIFS_FS_ENCRYPTION struct fscrypt_operations ubifs_crypt_operations = { - .is_encrypted = ubifs_crypt_is_encrypted, + .is_encrypted = __ubifs_crypt_is_encrypted, }; #endif