mirror of
https://github.com/containers/podman.git
synced 2026-03-22 00:21:58 -04:00
When running a privileged container, it should inherit the same devices the host has. Signed-off-by: baude <bbaude@redhat.com> Closes: #330 Approved by: mheon
11 lines
264 B
Go
11 lines
264 B
Go
package libcontainer
|
|
|
|
import "github.com/opencontainers/runc/libcontainer/cgroups"
|
|
import "github.com/opencontainers/runc/libcontainer/intelrdt"
|
|
|
|
type Stats struct {
|
|
Interfaces []*NetworkInterface
|
|
CgroupStats *cgroups.Stats
|
|
IntelRdtStats *intelrdt.Stats
|
|
}
|