diff mbox series

ext4: Remove references to bh->b_page

Message ID 20250213182303.2133205-1-willy@infradead.org (mailing list archive)
State New
Headers show
Series ext4: Remove references to bh->b_page | expand

Commit Message

Matthew Wilcox Feb. 13, 2025, 6:23 p.m. UTC
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>
---
 fs/ext4/inode.c   | 2 +-
 fs/ext4/super.c   | 2 +-
 fs/jbd2/journal.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

Comments

Jan Kara Feb. 14, 2025, 10:45 a.m. UTC | #1
On Thu 13-02-25 18:23:01, Matthew Wilcox (Oracle) wrote:
> 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>

Looks good. Feel free to add:

Reviewed-by: Jan Kara <jack@suse.cz>

								Honza

> ---
>  fs/ext4/inode.c   | 2 +-
>  fs/ext4/super.c   | 2 +-
>  fs/jbd2/journal.c | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
> index 7c54ae5fcbd4..bd579f46c7f3 100644
> --- a/fs/ext4/inode.c
> +++ b/fs/ext4/inode.c
> @@ -751,7 +751,7 @@ static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
>  	flags &= EXT4_MAP_FLAGS;
>  
>  	/* Dummy buffer_head? Set non-atomically. */
> -	if (!bh->b_page) {
> +	if (!bh->b_folio) {
>  		bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
>  		return;
>  	}
> diff --git a/fs/ext4/super.c b/fs/ext4/super.c
> index a50e5c31b937..366ce891bcc3 100644
> --- a/fs/ext4/super.c
> +++ b/fs/ext4/super.c
> @@ -7288,7 +7288,7 @@ static ssize_t ext4_quota_write(struct super_block *sb, int type,
>  	}
>  	lock_buffer(bh);
>  	memcpy(bh->b_data+offset, data, len);
> -	flush_dcache_page(bh->b_page);
> +	flush_dcache_folio(bh->b_folio);
>  	unlock_buffer(bh);
>  	err = ext4_handle_dirty_metadata(handle, NULL, bh);
>  	brelse(bh);
> diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c
> index d8084b31b361..e5a4e4ba7837 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.
>   */
> -- 
> 2.47.2
>
diff mbox series

Patch

diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
index 7c54ae5fcbd4..bd579f46c7f3 100644
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -751,7 +751,7 @@  static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
 	flags &= EXT4_MAP_FLAGS;
 
 	/* Dummy buffer_head? Set non-atomically. */
-	if (!bh->b_page) {
+	if (!bh->b_folio) {
 		bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
 		return;
 	}
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index a50e5c31b937..366ce891bcc3 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -7288,7 +7288,7 @@  static ssize_t ext4_quota_write(struct super_block *sb, int type,
 	}
 	lock_buffer(bh);
 	memcpy(bh->b_data+offset, data, len);
-	flush_dcache_page(bh->b_page);
+	flush_dcache_folio(bh->b_folio);
 	unlock_buffer(bh);
 	err = ext4_handle_dirty_metadata(handle, NULL, bh);
 	brelse(bh);
diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c
index d8084b31b361..e5a4e4ba7837 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.
  */