Skip to content

Commit

Permalink
add domain options required for NUMA
Browse files Browse the repository at this point in the history
  • Loading branch information
oleina committed Oct 20, 2024
1 parent 853427e commit f3112a6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions generate-xml/domain.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ let
(subelem "node" [ (subattr "id" typeInt) (subattr "bandwidth" typeInt) ] [ ])
])
])
(subelem "numatune" [ ] [
(subelem "memory" [ (subattr "mode" typeString) (subattr "nodeset" typeString) ] [ ])
(subelem "memnode" [ (subattr "mode" typeString) (subattr "nodeset" typeString) (subattr "cellid" typeString) ] [ ])
])

(subelem "sysinfo" [ (subattr "type" typeString) ] [
(subelem "bios" [ ] [
Expand Down Expand Up @@ -195,6 +199,14 @@ let
(subattr "policy" typeString)
(subattr "name" typeString)
] [ ])
(subelem "numa" [ ] [
(subelem "cell" [
(subattr "id" typeString)
(subattr "cpus" typeString)
(subattr "memory" typeInt)
(subattr "unit" typeString)
] [ ])
])
]
)
(subelem "clock"
Expand Down

0 comments on commit f3112a6

Please sign in to comment.