fs/ntfs3: Equivalent transition from page to folio
[ Upstream commit 045fff619312fb013540c80cff18aab3c33048ab ]
If using the proposed function folio_zero_range(), should one switch
from 'start + end' to 'start + length,' or use folio_zero_segment()
Fixes: 1da86618bd ("fs: Convert aops->write_begin to take a folio")
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
709565eaca
commit
e38ac7fbd5
+1
-1
@@ -222,7 +222,7 @@ static int ntfs_extend_initialized_size(struct file *file,
|
||||
if (err)
|
||||
goto out;
|
||||
|
||||
folio_zero_range(folio, zerofrom, folio_size(folio));
|
||||
folio_zero_range(folio, zerofrom, folio_size(folio) - zerofrom);
|
||||
|
||||
err = ntfs_write_end(file, mapping, pos, len, len, folio, NULL);
|
||||
if (err < 0)
|
||||
|
||||
Reference in New Issue
Block a user