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

10 lines
180 B
Go
Raw Normal View History

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