Skip to content

Commit

Permalink
config-linux: update type of LinuxCPU.Idle to *int64
Browse files Browse the repository at this point in the history
and add cpu.idle to example in config.md

Signed-off-by: wineway <wangyuweihx@gmail.com>
  • Loading branch information
wineway committed Apr 24, 2022
1 parent 2cf6663 commit fc985aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions config.md
Expand Up @@ -840,6 +840,7 @@ Here is a full example `config.json` for reference.
"realtimeRuntime": 950000,
"realtimePeriod": 1000000,
"cpus": "2-3",
"idle": 1,
"mems": "0-7"
},
"devices": [
Expand Down
2 changes: 1 addition & 1 deletion specs-go/config.go
Expand Up @@ -331,7 +331,7 @@ type LinuxCPU struct {
// List of memory nodes in the cpuset. Default is to use any available memory node.
Mems string `json:"mems,omitempty"`
// cgroups are configured with minimum weight, 0: default behavior, 1: SCHED_IDLE.
Idle int64 `json:"idle"`
Idle *int64 `json:"idle,omitempty"`
}

// LinuxPids for Linux cgroup 'pids' resource management (Linux 4.3)
Expand Down

0 comments on commit fc985aa

Please sign in to comment.