summaryrefslogtreecommitdiffstats
path: root/fs/ext4/mballoc.h
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2024-04-16 18:28:54 +0100
committerTheodore Ts'o <tytso@mit.edu>2024-05-07 15:37:46 -0400
commit99b150d84e4939735cfce245e32e3d29312c68ec (patch)
tree79887732c26b78d03a66364e3f3efdecacb13661 /fs/ext4/mballoc.h
parentda5704eef7037a5bc84a56519729d93d10a0e0a0 (diff)
downloadlinux-99b150d84e4939735cfce245e32e3d29312c68ec.tar.gz
linux-99b150d84e4939735cfce245e32e3d29312c68ec.tar.bz2
linux-99b150d84e4939735cfce245e32e3d29312c68ec.zip
ext4: convert bd_bitmap_page to bd_bitmap_folio
There is no need to make this a multi-page folio, so leave all the infrastructure around it in pages. But since we're locking it, playing with its refcount and checking whether it's uptodate, it needs to move to the folio API. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Link: https://lore.kernel.org/r/20240416172900.244637-2-willy@infradead.org Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/mballoc.h')
-rw-r--r--fs/ext4/mballoc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/mballoc.h b/fs/ext4/mballoc.h
index 7ee13d8eecd7..f8b7e9d2e463 100644
--- a/fs/ext4/mballoc.h
+++ b/fs/ext4/mballoc.h
@@ -217,7 +217,7 @@ struct ext4_allocation_context {
struct ext4_buddy {
struct page *bd_buddy_page;
void *bd_buddy;
- struct page *bd_bitmap_page;
+ struct folio *bd_bitmap_folio;
void *bd_bitmap;
struct ext4_group_info *bd_info;
struct super_block *bd_sb;