xfs: fix folio dirtying for XFILE_ALLOC callers
willy pointed out that folio_mark_dirty is the correct function to use to mark an xfile folio dirty because it calls out to the mapping's aops to mark it dirty. For tmpfs this likely doesn't matter much since it currently uses nop_dirty_folio, but let's use the abstractions properly. Reported-by: willy@infradead.org Fixes: 6907e3c00a40 ("xfs: add file_{get,put}_folio") Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
This commit is contained in:
parent
e21fea4ac3
commit
5335affcff
@ -293,7 +293,7 @@ xfile_get_folio(
|
||||
* (potentially last) reference in xfile_put_folio.
|
||||
*/
|
||||
if (flags & XFILE_ALLOC)
|
||||
folio_set_dirty(folio);
|
||||
folio_mark_dirty(folio);
|
||||
return folio;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user