Files
k3s/vendor/github.com/opencontainers/runc/libcontainer/configs/hugepage_limit.go
Darren Shepherd fa08d6076c Update vendor
2019-01-11 21:58:27 -07: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"`
}