File: linux_cgroups_relative_hugetlb.go

package info (click to toggle)
golang-github-opencontainers-runtime-tools 0.9.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,108 kB
  • sloc: sh: 557; makefile: 104
file content (55 lines) | stat: -rw-r--r-- 1,269 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main

import (
	"github.com/mndrix/tap-go"
	rspec "github.com/opencontainers/runtime-spec/specs-go"
	"github.com/opencontainers/runtime-tools/cgroups"
	"github.com/opencontainers/runtime-tools/validation/util"
)

func main() {
	page := "1GB"
	var limit uint64 = 56892210544640

	t := tap.New()
	t.Header(0)
	defer t.AutoPlan()

	g, err := util.GetDefaultGenerator()
	if err != nil {
		util.Fatal(err)
	}
	g.SetLinuxCgroupsPath(cgroups.RelCgroupPath)
	g.AddLinuxResourcesHugepageLimit(page, limit)
	err = util.RuntimeOutsideValidate(g, t, func(config *rspec.Spec, t *tap.T, state *rspec.State) error {
		cg, err := cgroups.FindCgroup()
		t.Ok((err == nil), "find hugetlb cgroup")
		if err != nil {
			t.Diagnostic(err.Error())
			return nil
		}

		lhd, err := cg.GetHugepageLimitData(state.Pid, config.Linux.CgroupsPath)
		t.Ok((err == nil), "get hugetlb cgroup data")
		if err != nil {
			t.Diagnostic(err.Error())
			return nil
		}

		found := false
		for _, lhl := range lhd {
			if lhl.Pagesize == page {
				found = true
				t.Ok(lhl.Limit == limit, "hugepage limit is set correctly")
				t.Diagnosticf("expect: %d, actual: %d", limit, lhl.Limit)
			}
		}
		t.Ok(found, "hugepage limit found")

		return nil
	})

	if err != nil {
		t.Fail(err.Error())
	}
}