blob: 8b240347be06eab671a8cb8cfcf440da09184b9c [file]
//go:build !linux
package vfs
import "github.com/moby/moby/v2/daemon/internal/quota"
type driverQuota struct{}
func setupDriverQuota(driver *Driver) error {
return nil
}
func (d *Driver) setQuotaOpt(size uint64) error {
return quota.ErrQuotaNotSupported
}
func (d *Driver) getQuotaOpt() uint64 {
return 0
}
func (d *Driver) setupQuota(dir string, size uint64) error {
return quota.ErrQuotaNotSupported
}
func (d *Driver) quotaSupported() bool {
return false
}