mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-14 04:39:33 +00:00
9 lines
180 B
Go
9 lines
180 B
Go
package cgroups
|
|
|
|
type HugepageLimit struct {
|
|
// which type of hugepage to limit.
|
|
Pagesize string `json:"page_size"`
|
|
|
|
// usage limit for hugepage.
|
|
Limit uint64 `json:"limit"`
|
|
}
|