summaryrefslogtreecommitdiff
path: root/pkg/btrfs/internal/itemtype.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2022-06-05 10:02:35 -0600
committerLuke Shumaker <lukeshu@lukeshu.com>2022-06-05 10:02:35 -0600
commitba31d3a4a48ca96517db50cdfa7d71b7721c5b55 (patch)
tree2d698bcf1c1442eed0d90650086284a72afa265e /pkg/btrfs/internal/itemtype.go
parent32840c8b2314164848c30305315eba6907f4acad (diff)
more
Diffstat (limited to 'pkg/btrfs/internal/itemtype.go')
-rw-r--r--pkg/btrfs/internal/itemtype.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/btrfs/internal/itemtype.go b/pkg/btrfs/internal/itemtype.go
index 5a8c10f..7f16889 100644
--- a/pkg/btrfs/internal/itemtype.go
+++ b/pkg/btrfs/internal/itemtype.go
@@ -7,6 +7,7 @@ import "fmt"
type ItemType uint8
const (
+ BLOCK_GROUP_ITEM_KEY = ItemType(192)
CHUNK_ITEM_KEY = ItemType(228)
DEV_ITEM_KEY = ItemType(216)
DEV_EXTENT_KEY = ItemType(204)
@@ -32,6 +33,7 @@ const (
func (t ItemType) String() string {
names := map[ItemType]string{
+ BLOCK_GROUP_ITEM_KEY: "BLOCK_GROUP_ITEM",
CHUNK_ITEM_KEY: "CHUNK_ITEM",
DEV_ITEM_KEY: "DEV_ITEM",
DEV_EXTENT_KEY: "DEV_EXTENT",