summaryrefslogtreecommitdiffstats
path: root/fs/ext4/mballoc.h
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2024-04-16 18:28:58 +0100
committerTheodore Ts'o <tytso@mit.edu>2024-05-07 15:38:17 -0400
commitc84f1510fba9fb181e6a1aa7b5fcfc67381b39c9 (patch)
tree2f7330b8aaa8c632a3e23a7ecd7cba7a2217db0d /fs/ext4/mballoc.h
parentccedf35b5daa429c0e731eac6fb32b0208302c6b (diff)
downloadlinux-c84f1510fba9fb181e6a1aa7b5fcfc67381b39c9.tar.gz
linux-c84f1510fba9fb181e6a1aa7b5fcfc67381b39c9.tar.bz2
linux-c84f1510fba9fb181e6a1aa7b5fcfc67381b39c9.zip
ext4: convert ac_buddy_page to ac_buddy_folio
This just carries around the bd_buddy_folio so should also be a folio. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Link: https://lore.kernel.org/r/20240416172900.244637-6-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 469e5516fb77..d8553f1498d3 100644
--- a/fs/ext4/mballoc.h
+++ b/fs/ext4/mballoc.h
@@ -205,7 +205,7 @@ struct ext4_allocation_context {
* N > 0, the field stores N, otherwise 0 */
__u8 ac_op; /* operation, for history only */
struct folio *ac_bitmap_folio;
- struct page *ac_buddy_page;
+ struct folio *ac_buddy_folio;
struct ext4_prealloc_space *ac_pa;
struct ext4_locality_group *ac_lg;
};