Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e145a5f7 authored by Matthew Wilcox (Oracle)'s avatar Matthew Wilcox (Oracle) Committed by Namjae Jeon
Browse files

exfat: fs: Convert __set_page_dirty_buffers to block_dirty_folio



Convert all callers; mostly this is just changing the aops to point
at it, but a few implementations need a little more work.

Signed-off-by: default avatarMatthew Wilcox (Oracle) <willy@infradead.org>
Tested-by: default avatarDamien Le Moal <damien.lemoal@opensource.wdc.com>
Acked-by: default avatarDamien Le Moal <damien.lemoal@opensource.wdc.com>
Tested-by: Mike Marshall <hubcap@omnibond.com> # orangefs
Tested-by: David Howells <dhowells@redhat.com> # afs
Signed-off-by: default avatarNamjae Jeon <linkinjeon@kernel.org>
parent 1270e747
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -514,7 +514,9 @@ int exfat_block_truncate_page(struct inode *inode, loff_t from)
}

static const struct address_space_operations exfat_aops = {
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 14, 0)
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)
	.dirty_folio	= block_dirty_folio,
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(5, 14, 0)
	.set_page_dirty	= __set_page_dirty_buffers,
#endif
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)