summaryrefslogtreecommitdiff
path: root/pkg/btrfs/internal
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/btrfs/internal')
-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",