From: Greg Kroah-Hartman Date: Tue, 29 Jan 2019 10:41:33 +0000 (+0100) Subject: 3.18-stable patches X-Git-Tag: v4.9.154~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0896d73fba3ec370717aa9cbc342a795e0a189ce;p=thirdparty%2Fkernel%2Fstable-queue.git 3.18-stable patches added patches: f2fs-read-page-index-before-freeing.patch --- diff --git a/queue-3.18/f2fs-read-page-index-before-freeing.patch b/queue-3.18/f2fs-read-page-index-before-freeing.patch new file mode 100644 index 00000000000..a1c3719b068 --- /dev/null +++ b/queue-3.18/f2fs-read-page-index-before-freeing.patch @@ -0,0 +1,47 @@ +From 0ea295dd853e0879a9a30ab61f923c26be35b902 Mon Sep 17 00:00:00 2001 +From: Pan Bian +Date: Thu, 22 Nov 2018 18:58:46 +0800 +Subject: f2fs: read page index before freeing + +From: Pan Bian + +commit 0ea295dd853e0879a9a30ab61f923c26be35b902 upstream. + +The function truncate_node frees the page with f2fs_put_page. However, +the page index is read after that. So, the patch reads the index before +freeing the page. + +Fixes: bf39c00a9a7f ("f2fs: drop obsolete node page when it is truncated") +Cc: +Signed-off-by: Pan Bian +Reviewed-by: Chao Yu +Signed-off-by: Jaegeuk Kim +Signed-off-by: Sudip Mukherjee +Signed-off-by: Greg Kroah-Hartman +--- + fs/f2fs/node.c | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +--- a/fs/f2fs/node.c ++++ b/fs/f2fs/node.c +@@ -565,6 +565,7 @@ static void truncate_node(struct dnode_o + { + struct f2fs_sb_info *sbi = F2FS_I_SB(dn->inode); + struct node_info ni; ++ pgoff_t index; + + get_node_info(sbi, dn->nid, &ni); + if (dn->inode->i_blocks == 0) { +@@ -588,10 +589,11 @@ invalidate: + clear_node_page_dirty(dn->node_page); + F2FS_SET_SB_DIRT(sbi); + ++ index = dn->node_page->index; + f2fs_put_page(dn->node_page, 1); + + invalidate_mapping_pages(NODE_MAPPING(sbi), +- dn->node_page->index, dn->node_page->index); ++ index, index); + + dn->node_page = NULL; + trace_f2fs_truncate_node(dn->inode, dn->nid, ni.blk_addr); diff --git a/queue-3.18/series b/queue-3.18/series index 62c8587460e..ef05f14f52e 100644 --- a/queue-3.18/series +++ b/queue-3.18/series @@ -13,3 +13,4 @@ can-bcm-check-timer-values-before-ktime-conversion.patch vt-invoke-notifier-on-screen-size-change.patch perf-unwind-unwind-with-libdw-doesn-t-take-symfs-int.patch perf-unwind-take-pgoff-into-account-when-reporting-e.patch +f2fs-read-page-index-before-freeing.patch