mirror of
https://github.com/containers/podman.git
synced 2026-03-23 09:02:06 -04:00
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.24.3 to 1.24.4. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.24.3...v1.24.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
28 lines
789 B
Go
28 lines
789 B
Go
package computestorage
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/Microsoft/hcsshim/internal/interop"
|
|
"github.com/Microsoft/hcsshim/internal/oc"
|
|
"go.opencensus.io/trace"
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
// GetLayerVhdMountPath returns the volume path for a virtual disk of a writable container layer.
|
|
func GetLayerVhdMountPath(ctx context.Context, vhdHandle windows.Handle) (path string, err error) {
|
|
title := "hcsshim.GetLayerVhdMountPath"
|
|
ctx, span := trace.StartSpan(ctx, title)
|
|
defer span.End()
|
|
defer func() { oc.SetSpanStatus(span, err) }()
|
|
|
|
var mountPath *uint16
|
|
err = hcsGetLayerVhdMountPath(vhdHandle, &mountPath)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to get vhd mount path: %s", err)
|
|
}
|
|
path = interop.ConvertAndFreeCoTaskMemString(mountPath)
|
|
return path, nil
|
|
}
|