mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-27 11:04:21 +01:00
Lets have a global vendor base on virtcontainers. Signed-off-by: Julio Montes <julio.montes@intel.com> Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com> Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
10 lines
180 B
Go
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"`
|
|
}
|