btrfs: Rename __btrfs_alloc_chunk to btrfs_alloc_chunk
authorNikolay Borisov <nborisov@suse.com>
Mon, 2 Mar 2020 10:29:25 +0000 (12:29 +0200)
committerDavid Sterba <dsterba@suse.com>
Mon, 23 Mar 2020 16:01:52 +0000 (17:01 +0100)
commit11c67b1a40b0a4a7c712103508a63267c7ecd4b8
treed2afc25c05903f7f106ac941d106b03ec333f600
parentfa121a26b2ceabce613e0b4cfc7498cfde73fe8d
btrfs: Rename __btrfs_alloc_chunk to btrfs_alloc_chunk

Having btrfs_alloc_chunk doesn't bring any value since it
encapsulates a lockdep assert and a call to find_next_chunk. Simply
rename the internal __btrfs_alloc_chunk function to the public one
and remove it's 2nd parameter as all callers always pass the return
value of find_next_chunk. Finally, migrate the call to
lockdep_assert_held so as to not lose the check.

Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/volumes.c