btrfs: make close_ctree return void

There's no user of the return value and we can get rid of the comment in
put_super.

Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <clm@fb.com>
This commit is contained in:
David Sterba
2014-06-04 18:10:45 +02:00
committed by Chris Mason
parent 57cdc8db21
commit 3abdbd780e
3 changed files with 3 additions and 11 deletions

View File

@@ -3623,7 +3623,7 @@ int btrfs_commit_super(struct btrfs_root *root)
return btrfs_commit_transaction(trans, root);
}
int close_ctree(struct btrfs_root *root)
void close_ctree(struct btrfs_root *root)
{
struct btrfs_fs_info *fs_info = root->fs_info;
int ret;
@@ -3711,8 +3711,6 @@ int close_ctree(struct btrfs_root *root)
btrfs_free_block_rsv(root, root->orphan_block_rsv);
root->orphan_block_rsv = NULL;
return 0;
}
int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid,