diff options
| author | 2017-01-18 00:31:30 +0200 | |
|---|---|---|
| committer | 2017-02-14 15:50:54 +0100 | |
| commit | 0f8939b8ac8623760c078d41282526de143ee623 (patch) | |
| tree | 4e76f15f3fb3c81b84329badd48f460b3fd543f1 /fs/btrfs/tree-log.c | |
| parent | btrfs: Make btrfs_record_snapshot_destroy take btrfs_inode (diff) | |
| download | linux-dev-0f8939b8ac8623760c078d41282526de143ee623.tar.xz linux-dev-0f8939b8ac8623760c078d41282526de143ee623.zip | |
btrfs: Make btrfs_inode_in_log take btrfs_inode
Signed-off-by: Nikolay Borisov <n.borisov.lkml@gmail.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/tree-log.c')
| -rw-r--r-- | fs/btrfs/tree-log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index 581d31171683..37adad5dabd6 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c @@ -5237,7 +5237,7 @@ process_leaf: goto next_dir_inode; } - if (btrfs_inode_in_log(di_inode, trans->transid)) { + if (btrfs_inode_in_log(BTRFS_I(di_inode), trans->transid)) { iput(di_inode); break; } @@ -5436,7 +5436,7 @@ static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans, if (ret) goto end_no_trans; - if (btrfs_inode_in_log(inode, trans->transid)) { + if (btrfs_inode_in_log(BTRFS_I(inode), trans->transid)) { ret = BTRFS_NO_LOG_SYNC; goto end_no_trans; } |
