diff options
author | Su Yue <suy.fnst@cn.fujitsu.com> | 2018-04-02 17:24:11 +0800 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-05-28 13:12:11 +0200 |
commit | c065f5b1cf52d50b9518aa02c7e50415820895af (patch) | |
tree | ceabc0f531cca56d4cec583a157b1b4f35837602 /fs/btrfs/ctree.h | |
parent | 29d2b84cf92780b74fd768f5506b0fc8dab56237 (diff) | |
download | blackbird-op-linux-c065f5b1cf52d50b9518aa02c7e50415820895af.tar.gz blackbird-op-linux-c065f5b1cf52d50b9518aa02c7e50415820895af.zip |
btrfs: rename btrfs_get_block_group_info and make it static
The function btrfs_get_block_group_info() was introduced by the
commit 5af3e8cce8b7 ("Btrfs: make filesystem read-only when submitting
barrier fails") which used it in disk-io.c.
However, the function is only called in ioctl.c now.
Its parameter type btrfs_ioctl_space_info* is only for ioctl.
So, make it static and rename it to be original name
get_block_group_info.
No functional change.
Signed-off-by: Su Yue <suy.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 0d422c9908b8..15e34172cdf0 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -3267,8 +3267,6 @@ int btrfs_is_empty_uuid(u8 *uuid); int btrfs_defrag_file(struct inode *inode, struct file *file, struct btrfs_ioctl_defrag_range_args *range, u64 newer_than, unsigned long max_pages); -void btrfs_get_block_group_info(struct list_head *groups_list, - struct btrfs_ioctl_space_info *space); void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock, struct btrfs_ioctl_balance_args *bargs); ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen, |