clair/vendor/github.com/opencontainers/runc/libcontainer/configs/hugepage_limit.go

10 lines
180 B
Go
Raw Normal View History

2016-06-09 15:44:24 +00:00
package configs
type HugepageLimit struct {
// which type of hugepage to limit.
Pagesize string `json:"page_size"`
// usage limit for hugepage.
Limit uint64 `json:"limit"`
}