diff options
| author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2025-02-13 18:23:01 +0000 |
|---|---|---|
| committer | Theodore Ts'o <tytso@mit.edu> | 2025-03-18 00:15:25 -0400 |
| commit | 08be56fec0588972f6fd4a3ce4ced3265de43dd8 (patch) | |
| tree | 2537904d7e337c87abb44cb3d78d59188fd7bc96 /fs/jbd2 | |
| parent | ext4: goto right label 'out_mmap_sem' in ext4_setattr() (diff) | |
| download | linux-08be56fec0588972f6fd4a3ce4ced3265de43dd8.tar.gz linux-08be56fec0588972f6fd4a3ce4ced3265de43dd8.zip | |
ext4: remove references to bh->b_page
Buffer heads are attached to folios, not to pages. Also
flush_dcache_page() is now deprecated in favour of flush_dcache_folio().
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://patch.msgid.link/20250213182303.2133205-1-willy@infradead.org
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/jbd2')
| -rw-r--r-- | fs/jbd2/journal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c index 51f7a8cc43a7..ff41a31e2bc9 100644 --- a/fs/jbd2/journal.c +++ b/fs/jbd2/journal.c @@ -947,7 +947,7 @@ int jbd2_journal_bmap(journal_t *journal, unsigned long blocknr, * descriptor blocks we do need to generate bona fide buffers. * * After the caller of jbd2_journal_get_descriptor_buffer() has finished modifying - * the buffer's contents they really should run flush_dcache_page(bh->b_page). + * the buffer's contents they really should run flush_dcache_folio(bh->b_folio). * But we don't bother doing that, so there will be coherency problems with * mmaps of blockdevs which hold live JBD-controlled filesystems. */ |
