mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			638 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			638 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package wclayer
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"github.com/Microsoft/hcsshim/internal/hcserror"
 | 
						|
	"github.com/Microsoft/hcsshim/internal/oc"
 | 
						|
	"go.opencensus.io/trace"
 | 
						|
)
 | 
						|
 | 
						|
// DeactivateLayer will dismount a layer that was mounted via ActivateLayer.
 | 
						|
func DeactivateLayer(ctx context.Context, path string) (err error) {
 | 
						|
	title := "hcsshim::DeactivateLayer"
 | 
						|
	ctx, span := trace.StartSpan(ctx, title)
 | 
						|
	defer span.End()
 | 
						|
	defer func() { oc.SetSpanStatus(span, err) }()
 | 
						|
	span.AddAttributes(trace.StringAttribute("path", path))
 | 
						|
 | 
						|
	err = deactivateLayer(&stdDriverInfo, path)
 | 
						|
	if err != nil {
 | 
						|
		return hcserror.New(err, title+"- failed", "")
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 |