From: Richard Weinberger Date: Mon, 12 Dec 2016 23:27:58 +0000 (+0100) Subject: ubifs: Use FS_CFLG_OWN_PAGES X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=385886686609dbdcd2e8f55c358647faa8d4f89e;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git 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 --- 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, } struct fscrypt_operations ubifs_crypt_operations = { - .flags = FS_CFLG_INPLACE_ENCRYPTION, + .flags = FS_CFLG_OWN_PAGES, .get_context = ubifs_crypt_get_context, .set_context = ubifs_crypt_set_context, .is_encrypted = __ubifs_crypt_is_encrypted,