summaryrefslogtreecommitdiff
path: root/vendor/github.com/Microsoft/hcsshim/internal/wclayer/expandscratchsize.go
blob: 7832bb452e2fb7376b8699e5f9248ae52c215da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package wclayer

import (
	"github.com/Microsoft/hcsshim/internal/hcserror"
	"github.com/sirupsen/logrus"
)

// ExpandScratchSize expands the size of a layer to at least size bytes.
func ExpandScratchSize(path string, size uint64) error {
	title := "hcsshim::ExpandScratchSize "
	logrus.Debugf(title+"path=%s size=%d", path, size)

	err := expandSandboxSize(&stdDriverInfo, path, size)
	if err != nil {
		err = hcserror.Errorf(err, title, "path=%s size=%d", path, size)
		logrus.Error(err)
		return err
	}

	logrus.Debugf(title+"- succeeded path=%s size=%d", path, size)
	return nil
}