containerd/vendor/github.com/opencontainers/runc/libcontainer/configs/hugepage_limit.go
Lantao Liu fa91b905e9 Update vendors.
Signed-off-by: Lantao Liu <lantaol@google.com>
2018-02-16 23:23:47 +00:00

10 lines
180 B
Go

package configs
type HugepageLimit struct {
// which type of hugepage to limit.
Pagesize string `json:"page_size"`
// usage limit for hugepage.
Limit uint64 `json:"limit"`
}