summaryrefslogtreecommitdiff
path: root/lib/btrfs/btrfsvol/blockgroupflags.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-02-12 02:44:35 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-02-12 02:44:35 -0700
commit128e4d9aa876e14a1203ce98bfaa7ad399ad97c7 (patch)
tree039c3c549414c21b15d58c3d695ee87c3feb1402 /lib/btrfs/btrfsvol/blockgroupflags.go
parent53d7fbb73869eb5defa1ca5c52b26abd346b13b9 (diff)
parent696a7d192e5eefa53230168a4b200ec0560c8a10 (diff)
Merge branch 'lukeshu/containers'
Diffstat (limited to 'lib/btrfs/btrfsvol/blockgroupflags.go')
-rw-r--r--lib/btrfs/btrfsvol/blockgroupflags.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/btrfs/btrfsvol/blockgroupflags.go b/lib/btrfs/btrfsvol/blockgroupflags.go
index 4ca5544..0125664 100644
--- a/lib/btrfs/btrfsvol/blockgroupflags.go
+++ b/lib/btrfs/btrfsvol/blockgroupflags.go
@@ -23,6 +23,11 @@ const (
BLOCK_GROUP_RAID1C3
BLOCK_GROUP_RAID1C4
+ // BLOCK_GROUP_RAID_MASK is the set of bits that mean that
+ // mean the logical:physical relationship is a one:many
+ // relationship rather than a one:one relationship.
+ //
+ // Notably, this does not include BLOCK_GROUP_RAID0.
BLOCK_GROUP_RAID_MASK = (BLOCK_GROUP_RAID1 | BLOCK_GROUP_DUP | BLOCK_GROUP_RAID10 | BLOCK_GROUP_RAID5 | BLOCK_GROUP_RAID6 | BLOCK_GROUP_RAID1C3 | BLOCK_GROUP_RAID1C4)
)