blob: ecd16ebdda9a0b20999558846b15ec2e6c886349 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//go:build !linux
// +build !linux
package vfs // import "github.com/docker/docker/daemon/graphdriver/vfs"
import "github.com/docker/docker/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
}
|