32 lines
656 B
Go
32 lines
656 B
Go
|
// +build linux
|
||
|
|
||
|
package fs
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/libcontainer/cgroups"
|
||
|
"github.com/docker/libcontainer/configs"
|
||
|
)
|
||
|
|
||
|
type PerfEventGroup struct {
|
||
|
}
|
||
|
|
||
|
func (s *PerfEventGroup) Apply(d *data) error {
|
||
|
// we just want to join this group even though we don't set anything
|
||
|
if _, err := d.join("perf_event"); err != nil && !cgroups.IsNotFound(err) {
|
||
|
return err
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (s *PerfEventGroup) Set(path string, cgroup *configs.Cgroup) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (s *PerfEventGroup) Remove(d *data) error {
|
||
|
return removePath(d.path("perf_event"))
|
||
|
}
|
||
|
|
||
|
func (s *PerfEventGroup) GetStats(path string, stats *cgroups.Stats) error {
|
||
|
return nil
|
||
|
}
|