12345678910111213141516171819202122232425262728 |
- // +build !linux
- package vfs // import "github.com/docker/docker/daemon/graphdriver/vfs"
- import "github.com/docker/docker/daemon/graphdriver/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
- }
|