From: Nikolay Borisov Date: Tue, 17 Jan 2017 22:31:49 +0000 (+0200) Subject: btrfs: Make count_inode_extrefs take btrfs_inode X-Git-Tag: v4.11-rc1~69^2~76 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=36283658234201f92fde544328d345517a6ffe4e;p=users%2Fwilly%2Flinux.git btrfs: Make count_inode_extrefs take btrfs_inode Signed-off-by: Nikolay Borisov Signed-off-by: David Sterba --- diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index c525a685bfa2..1e466ae5b140 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c @@ -1362,14 +1362,14 @@ static int insert_orphan_item(struct btrfs_trans_handle *trans, } static int count_inode_extrefs(struct btrfs_root *root, - struct inode *inode, struct btrfs_path *path) + struct btrfs_inode *inode, struct btrfs_path *path) { int ret = 0; int name_len; unsigned int nlink = 0; u32 item_size; u32 cur_offset = 0; - u64 inode_objectid = btrfs_ino(BTRFS_I(inode)); + u64 inode_objectid = btrfs_ino(inode); u64 offset = 0; unsigned long ptr; struct btrfs_inode_extref *extref; @@ -1491,7 +1491,7 @@ static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans, nlink = ret; - ret = count_inode_extrefs(root, inode, path); + ret = count_inode_extrefs(root, BTRFS_I(inode), path); if (ret < 0) goto out;