summaryrefslogtreecommitdiff
path: root/lib/btrfs/btrfstree/btree.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-03-20 13:36:37 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2023-03-21 12:05:30 -0400
commitd3dbadaa2eb3f14f2ad918a3ccd44a1ac224c853 (patch)
treef38f478982c4b9c0d00f198117dd244e24b12f81 /lib/btrfs/btrfstree/btree.go
parent62a9588ff563f569469d5cf7b3b594bf109af085 (diff)
btrfstree: Observe io/fs.SkipDir for PreKeyPointer
Diffstat (limited to 'lib/btrfs/btrfstree/btree.go')
-rw-r--r--lib/btrfs/btrfstree/btree.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/btrfs/btrfstree/btree.go b/lib/btrfs/btrfstree/btree.go
index 9713295..0e02a06 100644
--- a/lib/btrfs/btrfstree/btree.go
+++ b/lib/btrfs/btrfstree/btree.go
@@ -34,7 +34,7 @@ type TreeWalkHandler struct {
BadNode func(Path, *Node, error) error
PostNode func(Path, *Node) error
// Callbacks for items on interior nodes
- PreKeyPointer func(Path, KeyPointer) error
+ PreKeyPointer func(Path, KeyPointer) error // io/fs.SkipDir causes the KP to not be traversed
PostKeyPointer func(Path, KeyPointer) error
// Callbacks for items on leaf nodes
Item func(Path, Item) error