Skip to content

Commit

Permalink
Merge pull request #75 from nyawox/fakecore
Browse files Browse the repository at this point in the history
few vcpu additions
  • Loading branch information
AshleyYakeley authored Dec 15, 2024
2 parents fe3aaa8 + d854fe0 commit c333baa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion generate-xml/domain.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ let

(subelem "memory" [ (subattr "unit" typeString) ] (sub "count" typeInt))
(subelem "currentMemory" [ (subattr "unit" typeString) ] (sub "count" typeInt))
(subelem "vcpu" [ (subattr "placement" typeString) (subattr "cpuset" typeString) ] (sub "count" typeInt))
(subelem "vcpu" [ (subattr "placement" typeString) (subattr "cpuset" typeString) (subattr "current" typeInt) ] (sub "count" typeInt))
(subelem "vcpus" [ ] [
(subelem "vcpu" [ (subattr "id" typeInt) (subattr "enabled" typeBoolYesNo) (subattr "hotpluggable" typeBoolYesNo) (subattr "order" typeInt) ] [ ])
])
(subelem "iothreads" [ ] (sub "count" typeInt))
(subelem "cputune" [ ] [
(subelem "vcpupin" [ (subattr "vcpu" typeInt) (subattr "cpuset" typeString) ] [ ])
Expand Down

0 comments on commit c333baa

Please sign in to comment.