From 13e92f0906c52f2e33a91c6837f4707cbcb6624a Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Tue, 8 Sep 2009 15:45:20 +0100 Subject: [PATCH] add cpu affinity in the config --- xenvm/vmconfig.ml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xenvm/vmconfig.ml b/xenvm/vmconfig.ml index b6b40b8..e68cd00 100644 --- a/xenvm/vmconfig.ml +++ b/xenvm/vmconfig.ml @@ -150,6 +150,7 @@ type config = { sound: string option; inject_sci: int; qemu_pv: bool; + cpus_affinity: (int * (int list)) list; } let default_nic = @@ -598,6 +599,7 @@ let empty = on_halt = ActionDestroy; on_restart = ActionRestart; on_crash = ActionDestroy; + cpus_affinity = []; } let of_file uuid error_report file = -- 2.39.5