diff options
author | Richard Weinberger <richard@nod.at> | 2016-12-12 18:27:58 -0500 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2016-12-13 10:18:16 -0500 |
commit | 385886686609dbdcd2e8f55c358647faa8d4f89e (patch) | |
tree | 86142686a370f43d3a5f5931e244824387f88963 /fs/ubifs | |
parent | fc4b891bbefa73b496bb44b076bb5274b6bfba68 (diff) |
ubifs: Use FS_CFLG_OWN_PAGES
Commit bd7b8290388d ("fscrypt: Cleanup page locking requirements for
fscrypt_{decrypt,encrypt}_page()") renamed the flag.
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/crypto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/crypto.c b/fs/ubifs/crypto.c index aefa3c30b73b..3402720f2b28 100644 --- a/fs/ubifs/crypto.c +++ b/fs/ubifs/crypto.c | |||
@@ -87,7 +87,7 @@ int ubifs_decrypt(const struct inode *inode, struct ubifs_data_node *dn, | |||
87 | } | 87 | } |
88 | 88 | ||
89 | struct fscrypt_operations ubifs_crypt_operations = { | 89 | struct fscrypt_operations ubifs_crypt_operations = { |
90 | .flags = FS_CFLG_INPLACE_ENCRYPTION, | 90 | .flags = FS_CFLG_OWN_PAGES, |
91 | .get_context = ubifs_crypt_get_context, | 91 | .get_context = ubifs_crypt_get_context, |
92 | .set_context = ubifs_crypt_set_context, | 92 | .set_context = ubifs_crypt_set_context, |
93 | .is_encrypted = __ubifs_crypt_is_encrypted, | 93 | .is_encrypted = __ubifs_crypt_is_encrypted, |