OSDN Git Service

btrfs: Remove redundant checks from btrfs_alloc_data_chunk_ondemand
authorNikolay Borisov <nborisov@suse.com>
Tue, 11 Jul 2017 10:47:50 +0000 (13:47 +0300)
committerDavid Sterba <dsterba@suse.com>
Wed, 16 Aug 2017 14:12:02 +0000 (16:12 +0200)
commit1174cade8182b4136c8a162342bf7e8eba7200de
treebe3437981ce24581b19c87355a410926f9882785
parent7bdd6277e0dc2beb4f5db5ea4ff7670ecf0b5879
btrfs: Remove redundant checks from btrfs_alloc_data_chunk_ondemand

Many commits ago the data space_info in alloc_data_chunk_ondemand used to be
acquired from the inode. At that point commit
33b4d47f5e24 ("Btrfs: deal with NULL space info") got introduced to deal with
spurios cases where the space info could be null, following a rebalance.
Nowadays, however, the space info is referenced directly from the btrfs_fs_info
struct which is initialised at filesystem mount time. This makes the null
checks redundant, so remove them.

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/extent-tree.c