diff options
Diffstat (limited to 'fs/f2fs/node.c')
| -rw-r--r-- | fs/f2fs/node.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c index a8a0fb890e8d..4b0e2e3c2c88 100644 --- a/fs/f2fs/node.c +++ b/fs/f2fs/node.c @@ -2747,7 +2747,7 @@ int f2fs_restore_node_summary(struct f2fs_sb_info *sbi,  	sum_entry = &sum->entries[0];  	for (i = 0; i < last_offset; i += nrpages, addr += nrpages) { -		nrpages = min(last_offset - i, BIO_MAX_PAGES); +		nrpages = bio_max_segs(last_offset - i);  		/* readahead node pages */  		f2fs_ra_meta_pages(sbi, addr, nrpages, META_POR, true);  | 
