Commit 372e5f88 authored by David Sterba's avatar David Sterba
Browse files

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: default avatarAnand Jain <anand.jain@oracle.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent fd68c600
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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;