diff options
| author | Josef Bacik <[email protected]> | 2024-07-24 23:26:58 +0000 |
|---|---|---|
| committer | David Sterba <[email protected]> | 2024-09-10 14:51:16 +0000 |
| commit | dce9ef941205db02c8e7b01e0091f8115d024be1 (patch) | |
| tree | 310c79b5f53bb48ccf8e0c0c8e7c66df44256042 /fs/btrfs/btrfs_inode.h | |
| parent | btrfs: convert read_inline_extent() to use a folio (diff) | |
| download | kernel-dce9ef941205db02c8e7b01e0091f8115d024be1.tar.gz kernel-dce9ef941205db02c8e7b01e0091f8115d024be1.zip | |
btrfs: convert btrfs_get_extent() to take a folio
We only pass this into read_inline_extent, change it to take a folio and
update the callers.
Signed-off-by: Josef Bacik <[email protected]>
Reviewed-by: David Sterba <[email protected]>
Signed-off-by: David Sterba <[email protected]>
Diffstat (limited to 'fs/btrfs/btrfs_inode.h')
| -rw-r--r-- | fs/btrfs/btrfs_inode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/btrfs_inode.h b/fs/btrfs/btrfs_inode.h index fc60c0cde479..2d7f8da54d8a 100644 --- a/fs/btrfs/btrfs_inode.h +++ b/fs/btrfs/btrfs_inode.h @@ -578,7 +578,7 @@ struct inode *btrfs_iget_path(u64 ino, struct btrfs_root *root, struct btrfs_path *path); struct inode *btrfs_iget(u64 ino, struct btrfs_root *root); struct extent_map *btrfs_get_extent(struct btrfs_inode *inode, - struct page *page, u64 start, u64 len); + struct folio *folio, u64 start, u64 len); int btrfs_update_inode(struct btrfs_trans_handle *trans, struct btrfs_inode *inode); int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans, |
