summaryrefslogtreecommitdiff
path: root/pkg/btrfs/types_superblock.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2022-06-05 18:59:44 -0600
committerLuke Shumaker <lukeshu@lukeshu.com>2022-06-05 19:01:16 -0600
commit841986fe2feaea831c4968d9c13af1a6160ea396 (patch)
tree4cb2fb81ca5a941cd962222a298ffb1218f4b558 /pkg/btrfs/types_superblock.go
parentba2e78f4b59db9fe8bd5bdaf26996b71dfc05e83 (diff)
use internal.Generation for generation fiels
Diffstat (limited to 'pkg/btrfs/types_superblock.go')
-rw-r--r--pkg/btrfs/types_superblock.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/btrfs/types_superblock.go b/pkg/btrfs/types_superblock.go
index 9cd097b..7291869 100644
--- a/pkg/btrfs/types_superblock.go
+++ b/pkg/btrfs/types_superblock.go
@@ -46,7 +46,7 @@ type Superblock struct {
DevItem btrfsitem.Dev `bin:"off=0xc9, siz=0x62"` // DEV_ITEM data for this device
Label [0x100]byte `bin:"off=0x12b, siz=0x100"` // label (may not contain '/' or '\\')
CacheGeneration Generation `bin:"off=0x22b, siz=0x8"`
- UUIDTreeGeneration uint64 `bin:"off=0x233, siz=0x8"` // uuid_tree_generation
+ UUIDTreeGeneration Generation `bin:"off=0x233, siz=0x8"`
// FeatureIncompatMetadataUUID
MetadataUUID UUID `bin:"off=0x23b, siz=0x10"`