File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ type Linux struct {
4747 Apparmor * Apparmor `json:"apparmor,omitempty"`
4848 Selinux * Selinux `json:"selinux,omitempty"`
4949 IntelRdt * IntelRdt `json:"intelRdt,omitempty"`
50+ MemoryPolicy * MemoryPolicy `json:"memoryPolicy,omitempty"`
5051 MountExtensions * MountExtensions `json:"mountExtensions,omitempty"`
5152}
5253
@@ -131,6 +132,14 @@ type IntelRdt struct {
131132 Enabled * bool `json:"enabled,omitempty"`
132133}
133134
135+ // MemoryPolicy represents the "memoryPolicy" field.
136+ type MemoryPolicy struct {
137+ // modes is the list of known memory policy modes, e.g., "MPOL_INTERLEAVE".
138+ modes []string
139+ // flags is the list of known memory policy mode flags, e.g., "MPOL_F_STATIC_NODES".
140+ flags []string
141+ }
142+
134143// MountExtensions represents the "mountExtensions" field.
135144type MountExtensions struct {
136145 // IDMap represents the status of idmap mounts support.
You can’t perform that action at this time.
0 commit comments