mirror of
https://github.com/torvalds/linux.git
synced 2026-07-30 19:21:28 +02:00
btrfs: drop unused parameter inode from read_inline_extent()
We don't need the inode pointer to read inline extent, it's all accessible from the path pointer. Reviewed-by: Anand Jain <anand.jain@oracle.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
fd68c60048
commit
372e5f88af
|
|
@ -6734,8 +6734,7 @@ static noinline int uncompress_inline(struct btrfs_path *path,
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int read_inline_extent(struct btrfs_inode *inode, struct btrfs_path *path,
|
||||
struct folio *folio)
|
||||
static int read_inline_extent(struct btrfs_path *path, struct folio *folio)
|
||||
{
|
||||
struct btrfs_file_extent_item *fi;
|
||||
void *kaddr;
|
||||
|
|
@ -6933,7 +6932,7 @@ struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
|
|||
ASSERT(em->disk_bytenr == EXTENT_MAP_INLINE);
|
||||
ASSERT(em->len == fs_info->sectorsize);
|
||||
|
||||
ret = read_inline_extent(inode, path, folio);
|
||||
ret = read_inline_extent(path, folio);
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
goto insert;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user