diff options
| author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2025-02-13 18:24:30 +0000 |
|---|---|---|
| committer | Dave Kleikamp <dave.kleikamp@oracle.com> | 2025-02-13 12:29:02 -0600 |
| commit | 06f4613f39355594dfbf9d3a642b3447ba78af03 (patch) | |
| tree | 3981990dca618fe1a4273559af5d5d1464d4b9a9 /fs/jfs | |
| parent | jfs: Delete a couple tabs in jfs_reconfigure() (diff) | |
| download | linux-06f4613f39355594dfbf9d3a642b3447ba78af03.tar.gz linux-06f4613f39355594dfbf9d3a642b3447ba78af03.zip | |
jfs: 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: Dave Kleikamp <dave.kleikamp@oracle.com>
Diffstat (limited to 'fs/jfs')
| -rw-r--r-- | fs/jfs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jfs/super.c b/fs/jfs/super.c index 508666d4ed01..10368c188c5e 100644 --- a/fs/jfs/super.c +++ b/fs/jfs/super.c @@ -766,7 +766,7 @@ static ssize_t jfs_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); |
