Upstream commit 91b0abe36a7b2b3b02d7500925a5f8455334f0e5 "mm + fs: store shadow entries in page cache". Moreover, the truncate_inode_pages(..., 0) in delete_object_cryptcompress() is not needed at all. Signed-off-by: Ivan Shapovalov <intelfx@xxxxxxxxxxxx> --- plugin/file/cryptcompress.c | 2 -- super_ops.c | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/plugin/file/cryptcompress.c b/plugin/file/cryptcompress.c index 59d8df8..5433de9 100644 --- a/plugin/file/cryptcompress.c +++ b/plugin/file/cryptcompress.c @@ -3595,8 +3595,6 @@ int delete_object_cryptcompress(struct inode *inode) (unsigned long long)get_inode_oid(inode), result); } - truncate_inode_pages(inode->i_mapping, 0); - assert("edward-1487", pages_truncate_ok(inode, 0)); /* and remove stat data */ return reiser4_delete_object_common(inode); } diff --git a/super_ops.c b/super_ops.c index 73c18f2..697580c 100644 --- a/super_ops.c +++ b/super_ops.c @@ -215,7 +215,7 @@ static void reiser4_evict_inode(struct inode *inode) fplug->delete_object(inode); } - truncate_inode_pages(&inode->i_data, 0); + truncate_inode_pages_final(&inode->i_data); inode->i_blocks = 0; clear_inode(inode); reiser4_exit_context(ctx); -- 2.10.0 -- To unsubscribe from this list: send the line "unsubscribe reiserfs-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html