diff options
author | 2025-02-13 18:20:43 +0000 | |
---|---|---|
committer | 2025-02-14 11:44:05 +0100 | |
commit | ef51934a05d3a223b040a23b6e78335f63f74083 (patch) | |
tree | b0493e74835d12d838f2af5ce8af417dc57f3627 | |
parent | isofs: fix KMSAN uninit-value bug in do_isofs_readdir() (diff) | |
download | wireguard-linux-ef51934a05d3a223b040a23b6e78335f63f74083.tar.xz wireguard-linux-ef51934a05d3a223b040a23b6e78335f63f74083.zip |
ext2: Remove reference 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>
Signed-off-by: Jan Kara <jack@suse.cz>
Link: https://patch.msgid.link/20250213182045.2131356-1-willy@infradead.org
Diffstat (limited to '')
-rw-r--r-- | fs/ext2/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c index 37f7ce56adce..21bea926e0ee 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -1556,7 +1556,7 @@ static ssize_t ext2_quota_write(struct super_block *sb, int type, } lock_buffer(bh); memcpy(bh->b_data+offset, data, tocopy); - flush_dcache_page(bh->b_page); + flush_dcache_folio(bh->b_folio); set_buffer_uptodate(bh); mark_buffer_dirty(bh); unlock_buffer(bh); |