Simplify cgroup path handing in v2 via unified API
This unties the Gordian Knot of using GetPaths in cgroupv2 code. The problem is, the current code uses GetPaths for three kinds of things: 1. Get all the paths to cgroup v1 controllers to save its state (see (*linuxContainer).currentState(), (*LinuxFactory).loadState() methods). 2. Get all the paths to cgroup v1 controllers to have the setns process enter the proper cgroups in `(*setnsProcess).start()`. 3. Get the path to a specific controller (for example, `m.GetPaths()["devices"]`). Now, for cgroup v2 instead of a set of per-controller paths, we have only one single unified path, and a dedicated function `GetUnifiedPath()` to get it. This discrepancy between v1 and v2 cgroupManager API leads to the following problems with the code: - multiple if/else code blocks that have to treat v1 and v2 separately; - backward-compatible GetPaths() methods in v2 controllers; - - repeated writing of the PID into the same cgroup for v2; Overall, it's hard to write the right code with all this, and the code that is written is kinda hard to follow. The solution is to slightly change the API to do the 3 things outlined above in the same manner for v1 and v2: 1. Use `GetPaths()` for state saving and setns process cgroups entering. 2. Introduce and use Path(subsys string) to obtain a path to a subsystem. For v2, the argument is ignored and the unified path is returned. This commit converts all the controllers to the new API, and modifies all the users to use it. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
parent
2c8d668eee
commit
714c91e9f7
|
@ -27,27 +27,22 @@ type Manager interface {
|
||||||
// Destroys the cgroup set
|
// Destroys the cgroup set
|
||||||
Destroy() error
|
Destroy() error
|
||||||
|
|
||||||
// The option func SystemdCgroups() and Cgroupfs() require following attributes:
|
// Path returns a cgroup path to the specified controller/subsystem.
|
||||||
// Paths map[string]string
|
// For cgroupv2, the argument is unused and can be empty.
|
||||||
// Cgroups *configs.Cgroup
|
Path(string) string
|
||||||
// Paths maps cgroup subsystem to path at which it is mounted.
|
|
||||||
// Cgroups specifies specific cgroup settings for the various subsystems
|
|
||||||
|
|
||||||
// Returns cgroup paths to save in a state file and to be able to
|
|
||||||
// restore the object later.
|
|
||||||
GetPaths() map[string]string
|
|
||||||
|
|
||||||
// GetUnifiedPath returns the unified path when running in unified mode.
|
|
||||||
// The value corresponds to the all values of GetPaths() map.
|
|
||||||
//
|
|
||||||
// GetUnifiedPath returns error when running in hybrid mode as well as
|
|
||||||
// in legacy mode.
|
|
||||||
GetUnifiedPath() (string, error)
|
|
||||||
|
|
||||||
// Sets the cgroup as configured.
|
// Sets the cgroup as configured.
|
||||||
Set(container *configs.Config) error
|
Set(container *configs.Config) error
|
||||||
|
|
||||||
// Gets the cgroup as configured.
|
// GetPaths returns cgroup path(s) to save in a state file in order to restore later.
|
||||||
|
//
|
||||||
|
// For cgroup v1, a key is cgroup subsystem name, and the value is the path
|
||||||
|
// to the cgroup for this subsystem.
|
||||||
|
//
|
||||||
|
// For cgroup v2 unified hierarchy, a key is "", and the value is the unified path.
|
||||||
|
GetPaths() map[string]string
|
||||||
|
|
||||||
|
// GetCgroups returns the cgroup data as configured.
|
||||||
GetCgroups() (*configs.Cgroup, error)
|
GetCgroups() (*configs.Cgroup, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -209,15 +209,10 @@ func (m *manager) Destroy() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *manager) GetPaths() map[string]string {
|
func (m *manager) Path(subsys string) string {
|
||||||
m.mu.Lock()
|
m.mu.Lock()
|
||||||
paths := m.paths
|
defer m.mu.Unlock()
|
||||||
m.mu.Unlock()
|
return m.paths[subsys]
|
||||||
return paths
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *manager) GetUnifiedPath() (string, error) {
|
|
||||||
return "", errors.New("unified path is only supported when running in unified mode")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *manager) GetStats() (*cgroups.Stats, error) {
|
func (m *manager) GetStats() (*cgroups.Stats, error) {
|
||||||
|
@ -299,13 +294,11 @@ func (m *manager) Freeze(state configs.FreezerState) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *manager) GetPids() ([]int, error) {
|
func (m *manager) GetPids() ([]int, error) {
|
||||||
paths := m.GetPaths()
|
return cgroups.GetPids(m.Path("devices"))
|
||||||
return cgroups.GetPids(paths["devices"])
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *manager) GetAllPids() ([]int, error) {
|
func (m *manager) GetAllPids() ([]int, error) {
|
||||||
paths := m.GetPaths()
|
return cgroups.GetAllPids(m.Path("devices"))
|
||||||
return cgroups.GetAllPids(paths["devices"])
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func getCgroupData(c *configs.Cgroup, pid int) (*cgroupData, error) {
|
func getCgroupData(c *configs.Cgroup, pid int) (*cgroupData, error) {
|
||||||
|
@ -411,6 +404,12 @@ func CheckCpushares(path string, c uint64) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *manager) GetPaths() map[string]string {
|
||||||
|
m.mu.Lock()
|
||||||
|
defer m.mu.Unlock()
|
||||||
|
return m.paths
|
||||||
|
}
|
||||||
|
|
||||||
func (m *manager) GetCgroups() (*configs.Cgroup, error) {
|
func (m *manager) GetCgroups() (*configs.Cgroup, error) {
|
||||||
return m.cgroups, nil
|
return m.cgroups, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -164,22 +164,8 @@ func (m *manager) Destroy() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetPaths is for compatibility purpose and should be removed in future
|
func (m *manager) Path(_ string) string {
|
||||||
func (m *manager) GetPaths() map[string]string {
|
return m.dirPath
|
||||||
_ = m.getControllers()
|
|
||||||
paths := map[string]string{
|
|
||||||
// pseudo-controller for compatibility
|
|
||||||
"devices": m.dirPath,
|
|
||||||
"freezer": m.dirPath,
|
|
||||||
}
|
|
||||||
for c := range m.controllers {
|
|
||||||
paths[c] = m.dirPath
|
|
||||||
}
|
|
||||||
return paths
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *manager) GetUnifiedPath() (string, error) {
|
|
||||||
return m.dirPath, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *manager) Set(container *configs.Config) error {
|
func (m *manager) Set(container *configs.Config) error {
|
||||||
|
@ -245,6 +231,12 @@ func (m *manager) Set(container *configs.Config) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *manager) GetPaths() map[string]string {
|
||||||
|
paths := make(map[string]string, 1)
|
||||||
|
paths[""] = m.dirPath
|
||||||
|
return paths
|
||||||
|
}
|
||||||
|
|
||||||
func (m *manager) GetCgroups() (*configs.Cgroup, error) {
|
func (m *manager) GetCgroups() (*configs.Cgroup, error) {
|
||||||
return m.config, nil
|
return m.config, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,8 +42,8 @@ func (m *Manager) GetPaths() map[string]string {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Manager) GetUnifiedPath() (string, error) {
|
func (m *Manager) Path(_ string) string {
|
||||||
return "", fmt.Errorf("Systemd not supported")
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Manager) GetStats() (*cgroups.Stats, error) {
|
func (m *Manager) GetStats() (*cgroups.Stats, error) {
|
||||||
|
|
|
@ -236,15 +236,10 @@ func (m *legacyManager) Destroy() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *legacyManager) GetPaths() map[string]string {
|
func (m *legacyManager) Path(subsys string) string {
|
||||||
m.mu.Lock()
|
m.mu.Lock()
|
||||||
paths := m.paths
|
defer m.mu.Unlock()
|
||||||
m.mu.Unlock()
|
return m.paths[subsys]
|
||||||
return paths
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *legacyManager) GetUnifiedPath() (string, error) {
|
|
||||||
return "", errors.New("unified path is only supported when running in unified mode")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func join(c *configs.Cgroup, subsystem string, pid int) (string, error) {
|
func join(c *configs.Cgroup, subsystem string, pid int) (string, error) {
|
||||||
|
@ -434,6 +429,13 @@ func setKernelMemory(c *configs.Cgroup) error {
|
||||||
}
|
}
|
||||||
return fs.EnableKernelMemoryAccounting(path)
|
return fs.EnableKernelMemoryAccounting(path)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *legacyManager) GetPaths() map[string]string {
|
||||||
|
m.mu.Lock()
|
||||||
|
defer m.mu.Unlock()
|
||||||
|
return m.paths
|
||||||
|
}
|
||||||
|
|
||||||
func (m *legacyManager) GetCgroups() (*configs.Cgroup, error) {
|
func (m *legacyManager) GetCgroups() (*configs.Cgroup, error) {
|
||||||
return m.cgroups, nil
|
return m.cgroups, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -153,8 +153,7 @@ func (m *unifiedManager) Apply(pid int) error {
|
||||||
return errors.Wrapf(err, "error while starting unit %q with properties %+v", unitName, properties)
|
return errors.Wrapf(err, "error while starting unit %q with properties %+v", unitName, properties)
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err = m.GetUnifiedPath()
|
if err = m.initPath(); err != nil {
|
||||||
if err != nil {
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := fs2.CreateCgroupPath(m.path, m.cgroups); err != nil {
|
if err := fs2.CreateCgroupPath(m.path, m.cgroups); err != nil {
|
||||||
|
@ -188,22 +187,11 @@ func (m *unifiedManager) Destroy() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// this method is for v1 backward compatibility and will be removed
|
func (m *unifiedManager) Path(_ string) string {
|
||||||
func (m *unifiedManager) GetPaths() map[string]string {
|
return m.path
|
||||||
_, _ = m.GetUnifiedPath()
|
|
||||||
paths := map[string]string{
|
|
||||||
"pids": m.path,
|
|
||||||
"memory": m.path,
|
|
||||||
"io": m.path,
|
|
||||||
"cpu": m.path,
|
|
||||||
"devices": m.path,
|
|
||||||
"cpuset": m.path,
|
|
||||||
"freezer": m.path,
|
|
||||||
}
|
|
||||||
return paths
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// getSliceFull value is used in GetUnifiedPath.
|
// getSliceFull value is used in initPath.
|
||||||
// The value is incompatible with systemdDbus.PropSlice.
|
// The value is incompatible with systemdDbus.PropSlice.
|
||||||
func (m *unifiedManager) getSliceFull() (string, error) {
|
func (m *unifiedManager) getSliceFull() (string, error) {
|
||||||
c := m.cgroups
|
c := m.cgroups
|
||||||
|
@ -241,37 +229,35 @@ func (m *unifiedManager) getSliceFull() (string, error) {
|
||||||
return slice, nil
|
return slice, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *unifiedManager) GetUnifiedPath() (string, error) {
|
func (m *unifiedManager) initPath() error {
|
||||||
m.mu.Lock()
|
|
||||||
defer m.mu.Unlock()
|
|
||||||
if m.path != "" {
|
if m.path != "" {
|
||||||
return m.path, nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
sliceFull, err := m.getSliceFull()
|
sliceFull, err := m.getSliceFull()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
c := m.cgroups
|
c := m.cgroups
|
||||||
path := filepath.Join(sliceFull, getUnitName(c))
|
path := filepath.Join(sliceFull, getUnitName(c))
|
||||||
path, err = securejoin.SecureJoin(fs2.UnifiedMountpoint, path)
|
path, err = securejoin.SecureJoin(fs2.UnifiedMountpoint, path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return err
|
||||||
}
|
}
|
||||||
m.path = path
|
|
||||||
|
|
||||||
// an example of the final path in rootless:
|
// an example of the final path in rootless:
|
||||||
// "/sys/fs/cgroup/user.slice/user-1001.slice/user@1001.service/user.slice/libpod-132ff0d72245e6f13a3bbc6cdc5376886897b60ac59eaa8dea1df7ab959cbf1c.scope"
|
// "/sys/fs/cgroup/user.slice/user-1001.slice/user@1001.service/user.slice/libpod-132ff0d72245e6f13a3bbc6cdc5376886897b60ac59eaa8dea1df7ab959cbf1c.scope"
|
||||||
return m.path, nil
|
m.path = path
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *unifiedManager) fsManager() (cgroups.Manager, error) {
|
func (m *unifiedManager) fsManager() (cgroups.Manager, error) {
|
||||||
path, err := m.GetUnifiedPath()
|
if err := m.initPath(); err != nil {
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return fs2.NewManager(m.cgroups, path, m.rootless)
|
return fs2.NewManager(m.cgroups, m.path, m.rootless)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *unifiedManager) Freeze(state configs.FreezerState) error {
|
func (m *unifiedManager) Freeze(state configs.FreezerState) error {
|
||||||
|
@ -283,19 +269,17 @@ func (m *unifiedManager) Freeze(state configs.FreezerState) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *unifiedManager) GetPids() ([]int, error) {
|
func (m *unifiedManager) GetPids() ([]int, error) {
|
||||||
path, err := m.GetUnifiedPath()
|
if err := m.initPath(); err != nil {
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return cgroups.GetPids(path)
|
return cgroups.GetPids(m.path)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *unifiedManager) GetAllPids() ([]int, error) {
|
func (m *unifiedManager) GetAllPids() ([]int, error) {
|
||||||
path, err := m.GetUnifiedPath()
|
if err := m.initPath(); err != nil {
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return cgroups.GetAllPids(path)
|
return cgroups.GetAllPids(m.path)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *unifiedManager) GetStats() (*cgroups.Stats, error) {
|
func (m *unifiedManager) GetStats() (*cgroups.Stats, error) {
|
||||||
|
@ -326,6 +310,12 @@ func (m *unifiedManager) Set(container *configs.Config) error {
|
||||||
return fsMgr.Set(container)
|
return fsMgr.Set(container)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *unifiedManager) GetPaths() map[string]string {
|
||||||
|
paths := make(map[string]string, 1)
|
||||||
|
paths[""] = m.path
|
||||||
|
return paths
|
||||||
|
}
|
||||||
|
|
||||||
func (m *unifiedManager) GetCgroups() (*configs.Cgroup, error) {
|
func (m *unifiedManager) GetCgroups() (*configs.Cgroup, error) {
|
||||||
return m.cgroups, nil
|
return m.cgroups, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,8 +64,12 @@ type State struct {
|
||||||
// Set to true if BaseState.Config.RootlessEUID && BaseState.Config.RootlessCgroups
|
// Set to true if BaseState.Config.RootlessEUID && BaseState.Config.RootlessCgroups
|
||||||
Rootless bool `json:"rootless"`
|
Rootless bool `json:"rootless"`
|
||||||
|
|
||||||
// Path to all the cgroups setup for a container. Key is cgroup subsystem name
|
// Paths to all the container's cgroups, as returned by (*cgroups.Manager).GetPaths
|
||||||
// with the value as the path.
|
//
|
||||||
|
// For cgroup v1, a key is cgroup subsystem name, and the value is the path
|
||||||
|
// to the cgroup for this subsystem.
|
||||||
|
//
|
||||||
|
// For cgroup v2 unified hierarchy, a key is "", and the value is the unified path.
|
||||||
CgroupPaths map[string]string `json:"cgroup_paths"`
|
CgroupPaths map[string]string `json:"cgroup_paths"`
|
||||||
|
|
||||||
// NamespacePaths are filepaths to the container's namespaces. Key is the namespace type
|
// NamespacePaths are filepaths to the container's namespaces. Key is the namespace type
|
||||||
|
@ -648,14 +652,11 @@ func (c *linuxContainer) NotifyOOM() (<-chan struct{}, error) {
|
||||||
if c.config.RootlessCgroups {
|
if c.config.RootlessCgroups {
|
||||||
logrus.Warn("getting OOM notifications may fail if you don't have the full access to cgroups")
|
logrus.Warn("getting OOM notifications may fail if you don't have the full access to cgroups")
|
||||||
}
|
}
|
||||||
|
path := c.cgroupManager.Path("memory")
|
||||||
if cgroups.IsCgroup2UnifiedMode() {
|
if cgroups.IsCgroup2UnifiedMode() {
|
||||||
path, err := c.cgroupManager.GetUnifiedPath()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return notifyOnOOMV2(path)
|
return notifyOnOOMV2(path)
|
||||||
}
|
}
|
||||||
return notifyOnOOM(c.cgroupManager.GetPaths()["memory"])
|
return notifyOnOOM(path)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *linuxContainer) NotifyMemoryPressure(level PressureLevel) (<-chan struct{}, error) {
|
func (c *linuxContainer) NotifyMemoryPressure(level PressureLevel) (<-chan struct{}, error) {
|
||||||
|
@ -663,7 +664,7 @@ func (c *linuxContainer) NotifyMemoryPressure(level PressureLevel) (<-chan struc
|
||||||
if c.config.RootlessCgroups {
|
if c.config.RootlessCgroups {
|
||||||
logrus.Warn("getting memory pressure notifications may fail if you don't have the full access to cgroups")
|
logrus.Warn("getting memory pressure notifications may fail if you don't have the full access to cgroups")
|
||||||
}
|
}
|
||||||
return notifyMemoryPressure(c.cgroupManager.GetPaths()["memory"], level)
|
return notifyMemoryPressure(c.cgroupManager.Path("memory"), level)
|
||||||
}
|
}
|
||||||
|
|
||||||
var criuFeatures *criurpc.CriuFeatures
|
var criuFeatures *criurpc.CriuFeatures
|
||||||
|
@ -1023,23 +1024,12 @@ func (c *linuxContainer) Checkpoint(criuOpts *CriuOpts) error {
|
||||||
|
|
||||||
// CRIU can use cgroup freezer; when rpcOpts.FreezeCgroup
|
// CRIU can use cgroup freezer; when rpcOpts.FreezeCgroup
|
||||||
// is not set, CRIU uses ptrace() to pause the processes.
|
// is not set, CRIU uses ptrace() to pause the processes.
|
||||||
var fcg string
|
// Note cgroup v2 freezer is only supported since CRIU release 3.14.
|
||||||
switch cgroups.IsCgroup2UnifiedMode() {
|
if !cgroups.IsCgroup2UnifiedMode() || c.checkCriuVersion(31400) == nil {
|
||||||
case false:
|
if fcg := c.cgroupManager.Path("freezer"); fcg != "" {
|
||||||
fcg = c.cgroupManager.GetPaths()["freezer"]
|
rpcOpts.FreezeCgroup = proto.String(fcg)
|
||||||
case true:
|
|
||||||
// cgroup v2 freezer is only supported since CRIU release 3.14
|
|
||||||
if c.checkCriuVersion(31400) == nil {
|
|
||||||
fcg, err = c.cgroupManager.GetUnifiedPath()
|
|
||||||
if err != nil {
|
|
||||||
// should not happen
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if fcg != "" {
|
|
||||||
rpcOpts.FreezeCgroup = proto.String(fcg)
|
|
||||||
}
|
|
||||||
|
|
||||||
// append optional criu opts, e.g., page-server and port
|
// append optional criu opts, e.g., page-server and port
|
||||||
if criuOpts.PageServer.Address != "" && criuOpts.PageServer.Port != 0 {
|
if criuOpts.PageServer.Address != "" && criuOpts.PageServer.Port != 0 {
|
||||||
|
@ -1857,23 +1847,17 @@ func (c *linuxContainer) runType() Status {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *linuxContainer) isPaused() (bool, error) {
|
func (c *linuxContainer) isPaused() (bool, error) {
|
||||||
var fcg, filename, pausedState string
|
var filename, pausedState string
|
||||||
|
|
||||||
|
fcg := c.cgroupManager.Path("freezer")
|
||||||
if !cgroups.IsCgroup2UnifiedMode() {
|
if !cgroups.IsCgroup2UnifiedMode() {
|
||||||
fcg = c.cgroupManager.GetPaths()["freezer"]
|
|
||||||
if fcg == "" {
|
if fcg == "" {
|
||||||
// A container doesn't have a freezer cgroup
|
// container doesn't have a freezer cgroup
|
||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
filename = "freezer.state"
|
filename = "freezer.state"
|
||||||
pausedState = "FROZEN"
|
pausedState = "FROZEN"
|
||||||
} else {
|
} else {
|
||||||
var err error
|
|
||||||
fcg, err = c.cgroupManager.GetUnifiedPath()
|
|
||||||
if err != nil {
|
|
||||||
// should not happen
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
filename = "cgroup.freeze"
|
filename = "cgroup.freeze"
|
||||||
pausedState = "1"
|
pausedState = "1"
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,11 +15,10 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type mockCgroupManager struct {
|
type mockCgroupManager struct {
|
||||||
pids []int
|
pids []int
|
||||||
allPids []int
|
allPids []int
|
||||||
stats *cgroups.Stats
|
stats *cgroups.Stats
|
||||||
paths map[string]string
|
paths map[string]string
|
||||||
unifiedPath string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type mockIntelRdtManager struct {
|
type mockIntelRdtManager struct {
|
||||||
|
@ -55,8 +54,8 @@ func (m *mockCgroupManager) GetPaths() map[string]string {
|
||||||
return m.paths
|
return m.paths
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *mockCgroupManager) GetUnifiedPath() (string, error) {
|
func (m *mockCgroupManager) Path(subsys string) string {
|
||||||
return m.unifiedPath, nil
|
return m.paths[subsys]
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *mockCgroupManager) Freeze(state configs.FreezerState) error {
|
func (m *mockCgroupManager) Freeze(state configs.FreezerState) error {
|
||||||
|
|
Loading…
Reference in New Issue