# HG changeset patch
# User kfraser@xxxxxxxxxxxxxxxxxxxxx
# Date 1173365853 0
# Node ID 90e8d8169afd8acdd33e262012a8098cd3f8c944
# Parent fdbd9b91a030b1c8a0715b3319d57a864279491e
xend: Platform feature 'multiprocessor suspend' is x86-only for now.
Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>
---
tools/python/xen/xend/XendDomainInfo.py | 4 +++-
1 files changed, 3 insertions(+), 1 deletion(-)
diff -r fdbd9b91a030 -r 90e8d8169afd tools/python/xen/xend/XendDomainInfo.py
--- a/tools/python/xen/xend/XendDomainInfo.py Thu Mar 08 14:37:21 2007 +0000
+++ b/tools/python/xen/xend/XendDomainInfo.py Thu Mar 08 14:57:33 2007 +0000
@@ -781,7 +781,6 @@ class XendDomainInfo:
'name': self.info['name_label'],
'console/limit': str(xoptions.get_console_limit() * 1024),
'memory/target': str(self.info['memory_static_min'] * 1024),
- 'control/platform-feature-multiprocessor-suspend': str(1)
}
def f(n, v):
@@ -795,6 +794,9 @@ class XendDomainInfo:
f('console/ring-ref', self.console_mfn)
f('store/port', self.store_port)
f('store/ring-ref', self.store_mfn)
+
+ if arch.type == "x86":
+ f('control/platform-feature-multiprocessor-suspend', True)
# elfnotes
for n, v in self.info.get_notes().iteritems():
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|