1// +build !linux
2
3package vfs // import "github.com/docker/docker/daemon/graphdriver/vfs"
4
5import "github.com/docker/docker/quota"
6
7type driverQuota struct {
8}
9
10func setupDriverQuota(driver *Driver) error {
11	return nil
12}
13
14func (d *Driver) setQuotaOpt(size uint64) error {
15	return quota.ErrQuotaNotSupported
16}
17
18func (d *Driver) getQuotaOpt() uint64 {
19	return 0
20}
21
22func (d *Driver) setupQuota(dir string, size uint64) error {
23	return quota.ErrQuotaNotSupported
24}
25
26func (d *Driver) quotaSupported() bool {
27	return false
28}
29