diff options
author | David Sterba <dsterba@suse.com> | 2016-10-04 19:34:27 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-12-06 16:07:00 +0100 |
commit | 34441361c4f52a5f6e41d8de8e5debbeb415dbf0 (patch) | |
tree | 1ecdf96fc87c0c297106555b2ad7e1f4e74b2952 /fs/btrfs/volumes.h | |
parent | btrfs: remove root parameter from transaction commit/end routines (diff) | |
download | linux-34441361c4f52a5f6e41d8de8e5debbeb415dbf0.tar.xz linux-34441361c4f52a5f6e41d8de8e5debbeb415dbf0.zip |
btrfs: opencode chunk locking, remove helpers
The helpers are trivial and we don't use them consistently.
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/volumes.h')
-rw-r--r-- | fs/btrfs/volumes.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h index 18b4449fa5a5..811328984702 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h @@ -534,16 +534,6 @@ void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info); void btrfs_update_commit_device_bytes_used(struct btrfs_fs_info *fs_info, struct btrfs_transaction *transaction); -static inline void lock_chunks(struct btrfs_fs_info *fs_info) -{ - mutex_lock(&fs_info->chunk_mutex); -} - -static inline void unlock_chunks(struct btrfs_fs_info *fs_info) -{ - mutex_unlock(&fs_info->chunk_mutex); -} - struct list_head *btrfs_get_fs_uuids(void); void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info); void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info); |