aboutsummaryrefslogtreecommitdiff
path: root/fs/gfs2/glops.c
diff options
context:
space:
mode:
authorGravatar Matthew Wilcox (Oracle) <willy@infradead.org> 2022-12-15 21:43:58 +0000
committerGravatar Andrew Morton <akpm@linux-foundation.org> 2023-01-18 17:12:40 -0800
commit11551cf15ecc17c4db4456538fd73d284ffcf20b (patch)
tree111c542c9a4c59206076eb84a3568a4f6c79c7ba /fs/gfs2/glops.c
parentbuffer: use b_folio in mark_buffer_dirty() (diff)
downloadlinux-11551cf15ecc17c4db4456538fd73d284ffcf20b.tar.gz
linux-11551cf15ecc17c4db4456538fd73d284ffcf20b.tar.bz2
linux-11551cf15ecc17c4db4456538fd73d284ffcf20b.zip
gfs2: replace obvious uses of b_page with b_folio
These places just use b_page to get to the buffer's address_space. Link: https://lkml.kernel.org/r/20221215214402.3522366-9-willy@infradead.org Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Reviewed-by: Jan Kara <jack@suse.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'fs/gfs2/glops.c')
-rw-r--r--fs/gfs2/glops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/glops.c b/fs/gfs2/glops.c
index d78b61ecc1cd..081422644ec5 100644
--- a/fs/gfs2/glops.c
+++ b/fs/gfs2/glops.c
@@ -39,7 +39,7 @@ static void gfs2_ail_error(struct gfs2_glock *gl, const struct buffer_head *bh)
"AIL buffer %p: blocknr %llu state 0x%08lx mapping %p page "
"state 0x%lx\n",
bh, (unsigned long long)bh->b_blocknr, bh->b_state,
- bh->b_page->mapping, bh->b_page->flags);
+ bh->b_folio->mapping, bh->b_folio->flags);
fs_err(sdp, "AIL glock %u:%llu mapping %p\n",
gl->gl_name.ln_type, gl->gl_name.ln_number,
gfs2_glock2aspace(gl));