]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
btrfs: push cleanup into btrfs_read_locked_inode()
authorLeo Martins <loemra.dev@gmail.com>
Fri, 30 Aug 2024 20:24:54 +0000 (13:24 -0700)
committerDavid Sterba <dsterba@suse.com>
Mon, 11 Nov 2024 13:34:21 +0000 (14:34 +0100)
commit69673992b1aea5540199d9b8b658ede72f55a6cf
treeaedac278dcdac93ad042116a7a4ee53d90304855
parentdf3b8ca604f224eb4cd51669416ad4d607682273
btrfs: push cleanup into btrfs_read_locked_inode()

Move btrfs_add_inode_to_root() so it can be called from
btrfs_read_locked_inode(), no changes were made to the function.

Move cleanup code from btrfs_iget_path() to btrfs_read_locked_inode.
This improves readability and improves a leaky abstraction. Previously
btrfs_iget_path() had to handle a positive error case as a result of a
call to btrfs_search_slot(), but it makes more sense to handle this
closer to the source of the call.

Signed-off-by: Leo Martins <loemra.dev@gmail.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/inode.c