mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-11 11:55:28 +02:00
fs/ntfs3: Add missing .dirty_folio in address_space_operations
[ Upstream commit0f9579d9e0
] After switching from pages to folio [1], it became evident that the initialization of .dirty_folio for page cache operations was missed for compressed files. [1] https://lore.kernel.org/ntfs3/20240422193203.3534108-1-willy@infradead.org Fixes:82cae269cf
("fs/ntfs3: Add initialization of super block") Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
055f22654a
commit
bcd4e15e7e
|
@ -2117,5 +2117,6 @@ const struct address_space_operations ntfs_aops = {
|
||||||
const struct address_space_operations ntfs_aops_cmpr = {
|
const struct address_space_operations ntfs_aops_cmpr = {
|
||||||
.read_folio = ntfs_read_folio,
|
.read_folio = ntfs_read_folio,
|
||||||
.readahead = ntfs_readahead,
|
.readahead = ntfs_readahead,
|
||||||
|
.dirty_folio = block_dirty_folio,
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
Loading…
Reference in New Issue
Block a user