2018-09-05 14:54:38 -04:00
|
|
|
package wclayer
|
|
|
|
|
|
|
|
import (
|
2020-05-09 11:16:54 -04:00
|
|
|
"context"
|
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
"github.com/Microsoft/hcsshim/internal/hcserror"
|
2020-05-09 11:16:54 -04:00
|
|
|
"github.com/Microsoft/hcsshim/internal/oc"
|
|
|
|
"go.opencensus.io/trace"
|
2018-09-05 14:54:38 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// UnprepareLayer disables the filesystem filter for the read-write layer with
|
|
|
|
// the given id.
|
2020-05-09 11:16:54 -04:00
|
|
|
func UnprepareLayer(ctx context.Context, path string) (err error) {
|
2019-02-28 13:16:30 -05:00
|
|
|
title := "hcsshim::UnprepareLayer"
|
2020-05-09 11:16:54 -04:00
|
|
|
ctx, span := trace.StartSpan(ctx, title)
|
|
|
|
defer span.End()
|
|
|
|
defer func() { oc.SetSpanStatus(span, err) }()
|
|
|
|
span.AddAttributes(trace.StringAttribute("path", path))
|
2018-09-05 14:54:38 -04:00
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
err = unprepareLayer(&stdDriverInfo, path)
|
2018-09-05 14:54:38 -04:00
|
|
|
if err != nil {
|
2019-02-28 13:16:30 -05:00
|
|
|
return hcserror.New(err, title+" - failed", "")
|
2018-09-05 14:54:38 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|