mirror of
https://github.com/containers/podman.git
synced 2025-09-27 00:34:32 +08:00

Also update the e2e pull test to account for the changes when pulling from the dir transport. Images pulled via the dir transport are not tagged anymore; the path is not a reliable source. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
67 lines
1.5 KiB
Go
67 lines
1.5 KiB
Go
package cgroups
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
spec "github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
type memHandler struct{}
|
|
|
|
func getMemoryHandler() *memHandler {
|
|
return &memHandler{}
|
|
}
|
|
|
|
// Apply set the specified constraints
|
|
func (c *memHandler) Apply(ctr *CgroupControl, res *spec.LinuxResources) error {
|
|
if res.Memory == nil {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("memory apply not implemented yet")
|
|
}
|
|
|
|
// Create the cgroup
|
|
func (c *memHandler) Create(ctr *CgroupControl) (bool, error) {
|
|
if ctr.cgroup2 {
|
|
return false, nil
|
|
}
|
|
return ctr.createCgroupDirectory(Memory)
|
|
}
|
|
|
|
// Destroy the cgroup
|
|
func (c *memHandler) Destroy(ctr *CgroupControl) error {
|
|
return rmDirRecursively(ctr.getCgroupv1Path(Memory))
|
|
}
|
|
|
|
// Stat fills a metrics structure with usage stats for the controller
|
|
func (c *memHandler) Stat(ctr *CgroupControl, m *Metrics) error {
|
|
var err error
|
|
usage := MemoryUsage{}
|
|
|
|
var memoryRoot string
|
|
var limitFilename string
|
|
|
|
if ctr.cgroup2 {
|
|
memoryRoot = filepath.Join(cgroupRoot, ctr.path)
|
|
limitFilename = "memory.max"
|
|
if usage.Usage, err = readFileByKeyAsUint64(filepath.Join(memoryRoot, "memory.stat"), "anon"); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
memoryRoot = ctr.getCgroupv1Path(Memory)
|
|
limitFilename = "memory.limit_in_bytes"
|
|
if usage.Usage, err = readFileAsUint64(filepath.Join(memoryRoot, "memory.usage_in_bytes")); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
usage.Limit, err = readFileAsUint64(filepath.Join(memoryRoot, limitFilename))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
m.Memory = MemoryMetrics{Usage: usage}
|
|
return nil
|
|
}
|