search for: mp_suspend

Displaying 1 result from an estimated 1 matches for "mp_suspend".

Did you mean: smp_suspend
2007 Mar 05
2
[PATCH] Make save/restore of multiple VCPU contexts arch dependent
....py Fri Mar 02 12:11:52 2007 +0000 +++ b/tools/python/xen/xend/XendDomainInfo.py Mon Mar 05 10:30:22 2007 -0700 @@ -775,13 +775,18 @@ class XendDomainInfo: t.write(''vm'', self.vmpath) def _storeDomDetails(self): + if arch.type == "x86": + mp_suspend = 1 + else: + mp_suspend = 0 + to_store = { ''domid'': str(self.domid), ''vm'': self.vmpath, ''name'': self.info[''name_label''...