Skip to content

Commit

Permalink
Merge pull request #70 from antholeole/oleina/numa
Browse files Browse the repository at this point in the history
add domain options required for NUMA
  • Loading branch information
AshleyYakeley authored Oct 26, 2024
2 parents bd12164 + dfb41bc commit a958474
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" typeInt) ] [ ])
])

(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" typeInt)
(subattr "cpus" typeString)
(subattr "memory" typeInt)
(subattr "unit" typeString)
] [ ])
])
]
)
(subelem "clock"
Expand Down

0 comments on commit a958474

Please sign in to comment.