cff4f20c44
The github.com/containerd/containerd/log package was moved to a separate module, which will also be used by upcoming (patch) releases of containerd. This patch moves our own uses of the package to use the new module. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
38 lines
836 B
Go
38 lines
836 B
Go
package vfs // import "github.com/docker/docker/daemon/graphdriver/vfs"
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containerd/log"
|
|
"github.com/docker/docker/quota"
|
|
)
|
|
|
|
type driverQuota struct {
|
|
quotaCtl *quota.Control
|
|
quotaOpt quota.Quota
|
|
}
|
|
|
|
func setupDriverQuota(driver *Driver) {
|
|
if quotaCtl, err := quota.NewControl(driver.home); err == nil {
|
|
driver.quotaCtl = quotaCtl
|
|
} else if err != quota.ErrQuotaNotSupported {
|
|
log.G(context.TODO()).Warnf("Unable to setup quota: %v\n", err)
|
|
}
|
|
}
|
|
|
|
func (d *Driver) setQuotaOpt(size uint64) error {
|
|
d.quotaOpt.Size = size
|
|
return nil
|
|
}
|
|
|
|
func (d *Driver) getQuotaOpt() uint64 {
|
|
return d.quotaOpt.Size
|
|
}
|
|
|
|
func (d *Driver) setupQuota(dir string, size uint64) error {
|
|
return d.quotaCtl.SetQuota(dir, quota.Quota{Size: size})
|
|
}
|
|
|
|
func (d *Driver) quotaSupported() bool {
|
|
return d.quotaCtl != nil
|
|
}
|