summaryrefslogtreecommitdiff
path: root/lib/btrfsutil/rebuilt_callbacks.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-04-05 11:23:03 -0600
committerLuke Shumaker <lukeshu@lukeshu.com>2023-04-13 13:33:18 -0600
commitc9ca78f970f0b48fbf6965e8ec15f6b8f31ce485 (patch)
tree01e7a80fe15f3b14cf8df64b1b03bc91f9677487 /lib/btrfsutil/rebuilt_callbacks.go
parentdf6444f337ae24220b4e14443d9cd6e74e8d0606 (diff)
btrfsutil: RebuiltForrest: readItem: Return a full btrfstree.Item
Diffstat (limited to 'lib/btrfsutil/rebuilt_callbacks.go')
-rw-r--r--lib/btrfsutil/rebuilt_callbacks.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/btrfsutil/rebuilt_callbacks.go b/lib/btrfsutil/rebuilt_callbacks.go
index 3a7e6e6..41fe7f1 100644
--- a/lib/btrfsutil/rebuilt_callbacks.go
+++ b/lib/btrfsutil/rebuilt_callbacks.go
@@ -48,9 +48,9 @@ func (cb noopRebuiltForrestCallbacks) LookupRoot(ctx context.Context, tree btrfs
if !ok {
return 0, btrfsitem.Root{}, false
}
- itemBody := cb.forrest.readItem(ctx, itemPtr)
- defer itemBody.Free()
- switch itemBody := itemBody.(type) {
+ item := cb.forrest.readItem(ctx, itemPtr)
+ defer item.Body.Free()
+ switch itemBody := item.Body.(type) {
case *btrfsitem.Root:
return btrfsprim.Generation(itemKey.Offset), *itemBody, true
case *btrfsitem.Error:
@@ -73,9 +73,9 @@ func (cb noopRebuiltForrestCallbacks) LookupUUID(ctx context.Context, uuid btrfs
if !ok {
return 0, false
}
- itemBody := cb.forrest.readItem(ctx, itemPtr)
- defer itemBody.Free()
- switch itemBody := itemBody.(type) {
+ item := cb.forrest.readItem(ctx, itemPtr)
+ defer item.Body.Free()
+ switch itemBody := item.Body.(type) {
case *btrfsitem.UUIDMap:
return itemBody.ObjID, true
case *btrfsitem.Error: