mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-12 09:46:25 +08:00
46243fcea1
libct/cgroups/fs: rework Apply()
35 lines
756 B
Go
35 lines
756 B
Go
// +build linux
|
|
|
|
package fs
|
|
|
|
import (
|
|
"github.com/opencontainers/runc/libcontainer/cgroups"
|
|
"github.com/opencontainers/runc/libcontainer/cgroups/fscommon"
|
|
"github.com/opencontainers/runc/libcontainer/configs"
|
|
)
|
|
|
|
type NetPrioGroup struct {
|
|
}
|
|
|
|
func (s *NetPrioGroup) Name() string {
|
|
return "net_prio"
|
|
}
|
|
|
|
func (s *NetPrioGroup) Apply(path string, d *cgroupData) error {
|
|
return join(path, d.pid)
|
|
}
|
|
|
|
func (s *NetPrioGroup) Set(path string, cgroup *configs.Cgroup) error {
|
|
for _, prioMap := range cgroup.Resources.NetPrioIfpriomap {
|
|
if err := fscommon.WriteFile(path, "net_prio.ifpriomap", prioMap.CgroupString()); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *NetPrioGroup) GetStats(path string, stats *cgroups.Stats) error {
|
|
return nil
|
|
}
|