diff options
author | David Sterba <dsterba@suse.com> | 2017-02-10 19:04:32 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2017-02-17 12:03:51 +0100 |
commit | eece6a9cf69140fe1886f14d9a96add4f9929d78 (patch) | |
tree | 35bcad5e8108678f88751d44bf2ab298c4cce4be /fs/btrfs/disk-io.h | |
parent | b75f50624394fff4f0e6521fda673317d5b79309 (diff) | |
download | op-kernel-dev-eece6a9cf69140fe1886f14d9a96add4f9929d78.zip op-kernel-dev-eece6a9cf69140fe1886f14d9a96add4f9929d78.tar.gz |
btrfs: merge two superblock writing helpers
write_all_supers and write_ctree_super are almost equal, the parameter
'trans' is unused so we can drop it and have just one helper.
Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/disk-io.h')
-rw-r--r-- | fs/btrfs/disk-io.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/btrfs/disk-io.h b/fs/btrfs/disk-io.h index 1864e7c..0be2d4f 100644 --- a/fs/btrfs/disk-io.h +++ b/fs/btrfs/disk-io.h @@ -57,8 +57,7 @@ int open_ctree(struct super_block *sb, struct btrfs_fs_devices *fs_devices, char *options); void close_ctree(struct btrfs_fs_info *fs_info); -int write_ctree_super(struct btrfs_trans_handle *trans, - struct btrfs_fs_info *fs_info, int max_mirrors); +int write_all_supers(struct btrfs_fs_info *fs_info, int max_mirrors); struct buffer_head *btrfs_read_dev_super(struct block_device *bdev); int btrfs_read_dev_one_super(struct block_device *bdev, int copy_num, struct buffer_head **bh_ret); |