mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 12:44:03 +02:00
f2fs: fix to pass folio->index to f2fs_sanity_check_node_footer()
Otherwise in f2fs_sanity_check_node_footer(), it will check the
same nid incorrectly.
Cc: stable@kernel.org
Fixes: 0a736109c9 ("f2fs: fix to do sanity check on node footer in __write_node_folio()")
Signed-off-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
e1116f8e98
commit
7e188e9f94
|
|
@ -1790,7 +1790,7 @@ static bool __write_node_folio(struct folio *folio, bool atomic, bool do_fsync,
|
|||
/* get old block addr of this node page */
|
||||
nid = nid_of_node(folio);
|
||||
|
||||
if (f2fs_sanity_check_node_footer(sbi, folio, nid,
|
||||
if (f2fs_sanity_check_node_footer(sbi, folio, folio->index,
|
||||
NODE_TYPE_REGULAR, false)) {
|
||||
fserror_report_metadata(sbi->sb, -EFSCORRUPTED, GFP_NOFS);
|
||||
f2fs_stop_checkpoint(sbi, false, STOP_CP_REASON_CORRUPTED_NID);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user