runc/libcontainer/configs/hugepage_limit.go

10 lines
177 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 int `json:"limit"`
}