Merge pull request #1049 from mrunalp/getcgroups_all
Add flag to allow getting all mounts for cgroups subsystems
This commit is contained in:
commit
20c7c3bb37
|
@ -139,7 +139,7 @@ func (m Mount) GetThisCgroupDir(cgroups map[string]string) (string, error) {
|
||||||
return getControllerPath(m.Subsystems[0], cgroups)
|
return getControllerPath(m.Subsystems[0], cgroups)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getCgroupMountsHelper(ss map[string]bool, mi io.Reader) ([]Mount, error) {
|
func getCgroupMountsHelper(ss map[string]bool, mi io.Reader, all bool) ([]Mount, error) {
|
||||||
res := make([]Mount, 0, len(ss))
|
res := make([]Mount, 0, len(ss))
|
||||||
scanner := bufio.NewScanner(mi)
|
scanner := bufio.NewScanner(mi)
|
||||||
numFound := 0
|
numFound := 0
|
||||||
|
@ -166,7 +166,9 @@ func getCgroupMountsHelper(ss map[string]bool, mi io.Reader) ([]Mount, error) {
|
||||||
} else {
|
} else {
|
||||||
m.Subsystems = append(m.Subsystems, opt)
|
m.Subsystems = append(m.Subsystems, opt)
|
||||||
}
|
}
|
||||||
numFound++
|
if !all {
|
||||||
|
numFound++
|
||||||
|
}
|
||||||
}
|
}
|
||||||
res = append(res, m)
|
res = append(res, m)
|
||||||
}
|
}
|
||||||
|
@ -176,23 +178,25 @@ func getCgroupMountsHelper(ss map[string]bool, mi io.Reader) ([]Mount, error) {
|
||||||
return res, nil
|
return res, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetCgroupMounts() ([]Mount, error) {
|
// GetCgroupMounts returns the mounts for the cgroup subsystems.
|
||||||
|
// all indicates whether to return just the first instance or all the mounts.
|
||||||
|
func GetCgroupMounts(all bool) ([]Mount, error) {
|
||||||
f, err := os.Open("/proc/self/mountinfo")
|
f, err := os.Open("/proc/self/mountinfo")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
defer f.Close()
|
defer f.Close()
|
||||||
|
|
||||||
all, err := ParseCgroupFile("/proc/self/cgroup")
|
allSubsystems, err := ParseCgroupFile("/proc/self/cgroup")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
allMap := make(map[string]bool)
|
allMap := make(map[string]bool)
|
||||||
for s := range all {
|
for s := range allSubsystems {
|
||||||
allMap[s] = true
|
allMap[s] = true
|
||||||
}
|
}
|
||||||
return getCgroupMountsHelper(allMap, f)
|
return getCgroupMountsHelper(allMap, f, all)
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetAllSubsystems returns all the cgroup subsystems supported by the kernel
|
// GetAllSubsystems returns all the cgroup subsystems supported by the kernel
|
||||||
|
|
|
@ -134,7 +134,7 @@ func TestGetCgroupMounts(t *testing.T) {
|
||||||
}
|
}
|
||||||
for _, td := range testTable {
|
for _, td := range testTable {
|
||||||
mi := bytes.NewBufferString(td.mountInfo)
|
mi := bytes.NewBufferString(td.mountInfo)
|
||||||
cgMounts, err := getCgroupMountsHelper(td.subsystems, mi)
|
cgMounts, err := getCgroupMountsHelper(td.subsystems, mi, false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
@ -187,7 +187,7 @@ func BenchmarkGetCgroupMounts(b *testing.B) {
|
||||||
b.StopTimer()
|
b.StopTimer()
|
||||||
mi := bytes.NewBufferString(fedoraMountinfo)
|
mi := bytes.NewBufferString(fedoraMountinfo)
|
||||||
b.StartTimer()
|
b.StartTimer()
|
||||||
if _, err := getCgroupMountsHelper(subsystems, mi); err != nil {
|
if _, err := getCgroupMountsHelper(subsystems, mi, false); err != nil {
|
||||||
b.Fatal(err)
|
b.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -270,7 +270,7 @@ func mountToRootfs(m *configs.Mount, rootfs, mountLabel string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func getCgroupMounts(m *configs.Mount) ([]*configs.Mount, error) {
|
func getCgroupMounts(m *configs.Mount) ([]*configs.Mount, error) {
|
||||||
mounts, err := cgroups.GetCgroupMounts()
|
mounts, err := cgroups.GetCgroupMounts(false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue