Lines Matching refs:allowed
3921 u64 allowed = 0; in btrfs_reduce_alloc_profile() local
3941 allowed |= btrfs_raid_group[raid_type]; in btrfs_reduce_alloc_profile()
3943 allowed &= flags; in btrfs_reduce_alloc_profile()
3945 if (allowed & BTRFS_BLOCK_GROUP_RAID6) in btrfs_reduce_alloc_profile()
3946 allowed = BTRFS_BLOCK_GROUP_RAID6; in btrfs_reduce_alloc_profile()
3947 else if (allowed & BTRFS_BLOCK_GROUP_RAID5) in btrfs_reduce_alloc_profile()
3948 allowed = BTRFS_BLOCK_GROUP_RAID5; in btrfs_reduce_alloc_profile()
3949 else if (allowed & BTRFS_BLOCK_GROUP_RAID10) in btrfs_reduce_alloc_profile()
3950 allowed = BTRFS_BLOCK_GROUP_RAID10; in btrfs_reduce_alloc_profile()
3951 else if (allowed & BTRFS_BLOCK_GROUP_RAID1) in btrfs_reduce_alloc_profile()
3952 allowed = BTRFS_BLOCK_GROUP_RAID1; in btrfs_reduce_alloc_profile()
3953 else if (allowed & BTRFS_BLOCK_GROUP_RAID0) in btrfs_reduce_alloc_profile()
3954 allowed = BTRFS_BLOCK_GROUP_RAID0; in btrfs_reduce_alloc_profile()
3958 return extended_to_chunk(flags | allowed); in btrfs_reduce_alloc_profile()