On 2018/9/13 上午4:49, damenly.su@xxxxxxxxx wrote:
> From: Su Yue <suy.fnst@xxxxxxxxxxxxxx>
>
> The argument index is not used in btrfs_lookup_inode_extref(),
> so remove it.
> And adjust positions its arguments to make it consistent with
> kernel part.
>
> No functional change.
>
> Fixes: 260675657767 ("btrfs-progs: Import btrfs_insert/del/lookup_extref() functions.")
> Signed-off-by: Su Yue <suy.fnst@xxxxxxxxxxxxxx>
Looks good, just small nitpick on coding style.
After fixing that, feel free to add my tag:
Reviewed-by: Qu Wenruo <wqu@xxxxxxxx>
> ---
> ctree.h | 6 +++---
> inode-item.c | 6 +++---
> 2 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/ctree.h b/ctree.h
> index 4719962df67d..e7f6c5df95f1 100644
> --- a/ctree.h
> +++ b/ctree.h
> @@ -2708,9 +2708,9 @@ int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
> *root, struct btrfs_path *path,
> struct btrfs_key *location, int mod);
> struct btrfs_inode_extref *btrfs_lookup_inode_extref(struct btrfs_trans_handle
> - *trans, struct btrfs_path *path, struct btrfs_root *root,
> - u64 ino, u64 parent_ino, u64 index, const char *name,
> - int namelen, int ins_len);
> + *trans, struct btrfs_root *root, struct btrfs_path *path,
*trans and struct btrfs_trans_handle are in different lines, looks
pretty strange.
It would be much better to keep them in the same line, just what kernel
does.
> + const char *name, int namelen, u64 ino, u64 parent_ino,
> + int ins_len);
> int btrfs_del_inode_extref(struct btrfs_trans_handle *trans,
> struct btrfs_root *root,
> const char *name, int name_len,
> diff --git a/inode-item.c b/inode-item.c
> index 1cc106670cd4..461557cb83d6 100644
> --- a/inode-item.c
> +++ b/inode-item.c
> @@ -228,9 +228,9 @@ static int btrfs_find_name_in_ext_backref(struct btrfs_path *path,
> }
>
> struct btrfs_inode_extref *btrfs_lookup_inode_extref(struct btrfs_trans_handle
> - *trans, struct btrfs_path *path, struct btrfs_root *root,
> - u64 ino, u64 parent_ino, u64 index, const char *name,
> - int namelen, int ins_len)
> + *trans, struct btrfs_root *root, struct btrfs_path *path,
Same here.
Thanks,
Qu
> + const char *name, int namelen, u64 ino, u64 parent_ino,
> + int ins_len)
> {
> struct btrfs_key key;
> struct btrfs_inode_extref *extref;
>