...

Source file src/github.com/opencontainers/runc/libcontainer/configs/hugepage_limit.go

Documentation: github.com/opencontainers/runc/libcontainer/configs

     1  package configs
     2  
     3  type HugepageLimit struct {
     4  	// which type of hugepage to limit.
     5  	Pagesize string `json:"page_size"`
     6  
     7  	// usage limit for hugepage.
     8  	Limit uint64 `json:"limit"`
     9  }
    10  

View as plain text