...

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

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

     1  package configs
     2  
     3  // LinuxRdma for Linux cgroup 'rdma' resource management (Linux 4.11)
     4  type LinuxRdma struct {
     5  	// Maximum number of HCA handles that can be opened. Default is "no limit".
     6  	HcaHandles *uint32 `json:"hca_handles,omitempty"`
     7  	// Maximum number of HCA objects that can be created. Default is "no limit".
     8  	HcaObjects *uint32 `json:"hca_objects,omitempty"`
     9  }
    10  

View as plain text