Skip to content

Commit

Permalink
btrfs: Make btrfs_log_all_parents take btrfs_inode
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolay Borisov <[email protected]>
Signed-off-by: David Sterba <[email protected]>
  • Loading branch information
lorddoskias authored and kdave committed Feb 28, 2017
1 parent 6288d6e commit d0a0b78
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fs/btrfs/tree-log.c
Original file line number Diff line number Diff line change
Expand Up @@ -5287,15 +5287,15 @@ static int log_new_dir_dentries(struct btrfs_trans_handle *trans,
}

static int btrfs_log_all_parents(struct btrfs_trans_handle *trans,
struct inode *inode,
struct btrfs_inode *inode,
struct btrfs_log_ctx *ctx)
{
struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
int ret;
struct btrfs_path *path;
struct btrfs_key key;
struct btrfs_root *root = BTRFS_I(inode)->root;
const u64 ino = btrfs_ino(BTRFS_I(inode));
struct btrfs_root *root = inode->root;
const u64 ino = btrfs_ino(inode);

path = btrfs_alloc_path();
if (!path)
Expand Down Expand Up @@ -5506,7 +5506,7 @@ static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
* and has a link count of 2.
*/
if (BTRFS_I(inode)->last_unlink_trans > last_committed) {
ret = btrfs_log_all_parents(trans, orig_inode, ctx);
ret = btrfs_log_all_parents(trans, BTRFS_I(orig_inode), ctx);
if (ret)
goto end_trans;
}
Expand Down

0 comments on commit d0a0b78

Please sign in to comment.