Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion features-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,13 +234,16 @@ Irrelevant to the availability of Intel RDT on the host operating system.
* **`enabled`** (bool, OPTIONAL) represents whether the runtime supports Intel RDT.
* **`schemata`** (bool, OPTIONAL) represents whether the
(`schemata` field of `linux.intelRdt` in `config.json`)[config-linux.md#intelrdt] is supported.
* **`monitoring`** (bool, OPTIONAL) represents whether the
(`enableMonitoring` field of `linux.intelRdt` in `config.json`)[config-linux.md#intelrdt] is supported.

### Example

```json
"intelRdt": {
"enabled": true,
"schemata": true
"schemata": true,
"monitoring": true
}
```

Expand Down
3 changes: 2 additions & 1 deletion features.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,8 @@ Here is a full example for reference.
},
"intelRdt": {
"enabled": true,
"schemata": true
"schemata": true,
"monitoring": true
}
},
"annotations": {
Expand Down
4 changes: 4 additions & 0 deletions specs-go/features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ type IntelRdt struct {
// Schemata is true if the "linux.intelRdt.enableMonitoring" field of the
// spec is implemented.
Schemata *bool `json:"schemata,omitempty"`
// Monitoring is true if the "linux.intelRdt.enableMonitoring" field of the
// spec is implemented.
// Nil value means "unknown", not "false".
Monitoring *bool `json:"monitoring,omitempty"`
}

// MemoryPolicy represents the "memoryPolicy" field.
Expand Down
Loading