mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-11 12:44:49 -04: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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user