Skip to content

Commit

Permalink
rbd: pass a max-depth to getCloneDepth()
Browse files Browse the repository at this point in the history
The `getCloneDepth()` function does not need to traverse the whole chain
of parents when a certain max-limit is configured. The traversing can be
aborted once the hard-limit is reached. This makes the procedure a
little more efficient, as unnecessary traversing is prevented.

Signed-off-by: Niels de Vos <ndevos@ibm.com>
  • Loading branch information
nixpanic committed Sep 4, 2023
1 parent 047e716 commit 6c1700e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/rbd/nodeserver.go
Expand Up @@ -598,7 +598,7 @@ func flattenImageBeforeMapping(
if err != nil {
return err
}
depth, err = volOptions.getCloneDepth()
depth, err = volOptions.getCloneDepth(rbdHardMaxCloneDepth)
if err != nil {
return err
}
Expand Down
15 changes: 12 additions & 3 deletions internal/rbd/rbd_util.go
Expand Up @@ -698,11 +698,13 @@ func (ri *rbdImage) trashRemoveImage(ctx context.Context) error {
}

// getCloneDepth walks the parents of the image and returns the number of
// images in the chain.
// images in the chain. The `max` argument to the function is used to specify a
// limit of the depth to check. When `max` depth is reached, no further
// traversing of the depth is required.
//
// This function re-uses the ioctx of the image to open all images in the
// chain. There is no need to open new ioctx's for every image.
func (ri *rbdImage) getCloneDepth() (uint, error) {
func (ri *rbdImage) getCloneDepth(max uint) (uint, error) {
var (
depth uint
parent librbd.ImageSpec
Expand Down Expand Up @@ -733,6 +735,13 @@ func (ri *rbdImage) getCloneDepth() (uint, error) {
// if there is a parent, count it to the depth
depth++

// if max (usually hard-limit) is reached, further traversing
// parents is not needed, some action (flattening) will be
// triggered regardless of deeper depth
if depth == max {
break
}

// open the parent image, so that the for-loop can continue
// with checking for the parent of the parent
parent = info.Image
Expand Down Expand Up @@ -814,7 +823,7 @@ func (ri *rbdImage) flattenRbdImage(

// skip clone depth check if request is for force flatten
if !forceFlatten {
depth, err = ri.getCloneDepth()
depth, err = ri.getCloneDepth(hardlimit)
if err != nil {
return err
}
Expand Down

0 comments on commit 6c1700e

Please sign in to comment.