btrfs-progs: remove unused argument from btrfs_lookup_inode_ref
authorDavid Sterba <dsterba@suse.com>
Thu, 9 Feb 2017 16:42:02 +0000 (17:42 +0100)
committerDavid Sterba <dsterba@suse.com>
Wed, 8 Mar 2017 12:00:47 +0000 (13:00 +0100)
Signed-off-by: David Sterba <dsterba@suse.com>
ctree.h
inode-item.c
inode.c

diff --git a/ctree.h b/ctree.h
index f241a5e..1d0622d 100644 (file)
--- a/ctree.h
+++ b/ctree.h
@@ -2713,7 +2713,7 @@ int btrfs_insert_inode_extref(struct btrfs_trans_handle *trans,
 struct btrfs_inode_ref *btrfs_lookup_inode_ref(struct btrfs_trans_handle *trans,
                struct btrfs_root *root, struct btrfs_path *path,
                const char *name, int namelen, u64 ino, u64 parent_ino,
-               u64 index, int ins_len);
+               int ins_len);
 int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
                        struct btrfs_root *root, const char *name, int name_len,
                        u64 ino, u64 parent_ino, u64 *index);
index 4c7ceac..1cc1066 100644 (file)
@@ -160,7 +160,7 @@ int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
 struct btrfs_inode_ref *btrfs_lookup_inode_ref(struct btrfs_trans_handle *trans,
                struct btrfs_root *root, struct btrfs_path *path,
                const char *name, int namelen, u64 ino, u64 parent_ino,
-               u64 index, int ins_len)
+               int ins_len)
 {
        struct btrfs_key key;
        struct btrfs_inode_ref *ret_inode_ref = NULL;
diff --git a/inode.c b/inode.c
index 991b8dd..6b8bf40 100644 (file)
--- a/inode.c
+++ b/inode.c
@@ -286,7 +286,7 @@ int btrfs_unlink(struct btrfs_trans_handle *trans, struct btrfs_root *root,
 
        /* check the ref and backref exists */
        inode_ref = btrfs_lookup_inode_ref(trans, root, path, name, namelen,
-                                          ino, parent_ino, index, 0);
+                                          ino, parent_ino, 0);
        if (IS_ERR(inode_ref)) {
                ret = PTR_ERR(inode_ref);
                goto out;