mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c677e4cc87
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
16 lines
443 B
Go
16 lines
443 B
Go
package quota // import "github.com/docker/docker/quota"
|
|
|
|
import "sync"
|
|
|
|
// Quota limit params - currently we only control blocks hard limit
|
|
type Quota struct {
|
|
Size uint64
|
|
}
|
|
|
|
// Control - Context to be used by storage driver (e.g. overlay)
|
|
// who wants to apply project quotas to container dirs
|
|
type Control struct {
|
|
backingFsBlockDev string
|
|
sync.RWMutex // protect nextProjectID and quotas map
|
|
quotas map[string]uint32
|
|
}
|