remove unused functions
Seems no one is using them. Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
This commit is contained in:
parent
d70569a238
commit
36633d3cb4
|
@ -131,19 +131,6 @@ func (m *Manager) GetPaths() map[string]string {
|
||||||
return m.Paths
|
return m.Paths
|
||||||
}
|
}
|
||||||
|
|
||||||
// Symmetrical public function to update device based cgroups. Also available
|
|
||||||
// in the systemd implementation.
|
|
||||||
func ApplyDevices(c *configs.Cgroup, pid int) error {
|
|
||||||
d, err := getCgroupData(c, pid)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
devices := subsystems["devices"]
|
|
||||||
|
|
||||||
return devices.Apply(d)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *Manager) GetStats() (*cgroups.Stats, error) {
|
func (m *Manager) GetStats() (*cgroups.Stats, error) {
|
||||||
stats := cgroups.NewStats()
|
stats := cgroups.NewStats()
|
||||||
for name, path := range m.Paths {
|
for name, path := range m.Paths {
|
||||||
|
|
|
@ -46,10 +46,6 @@ func (m *Manager) Freeze(state configs.FreezerState) error {
|
||||||
return fmt.Errorf("Systemd not supported")
|
return fmt.Errorf("Systemd not supported")
|
||||||
}
|
}
|
||||||
|
|
||||||
func ApplyDevices(c *configs.Cgroup, pid int) error {
|
|
||||||
return fmt.Errorf("Systemd not supported")
|
|
||||||
}
|
|
||||||
|
|
||||||
func Freeze(c *configs.Cgroup, state configs.FreezerState) error {
|
func Freeze(c *configs.Cgroup, state configs.FreezerState) error {
|
||||||
return fmt.Errorf("Systemd not supported")
|
return fmt.Errorf("Systemd not supported")
|
||||||
}
|
}
|
||||||
|
|
|
@ -401,12 +401,6 @@ func joinDevices(c *configs.Cgroup, pid int) error {
|
||||||
return devices.Set(path, c)
|
return devices.Set(path, c)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Symmetrical public function to update device based cgroups. Also available
|
|
||||||
// in the fs implementation.
|
|
||||||
func ApplyDevices(c *configs.Cgroup, pid int) error {
|
|
||||||
return joinDevices(c, pid)
|
|
||||||
}
|
|
||||||
|
|
||||||
func joinMemory(c *configs.Cgroup, pid int) error {
|
func joinMemory(c *configs.Cgroup, pid int) error {
|
||||||
memorySwap := c.MemorySwap
|
memorySwap := c.MemorySwap
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue