ia64/xen-unstable
changeset 8967:f1c75df46b46
Cset 8916 missed two extra pages for VT-i domain and thus breaks domain
creation. This fixes it.
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
creation. This fixes it.
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Wed Feb 22 19:40:19 2006 +0100 (2006-02-22) |
parents | 049929854f7f |
children | 697fac283c9e |
files | tools/python/xen/xend/image.py |
line diff
1.1 --- a/tools/python/xen/xend/image.py Wed Feb 22 19:38:50 2006 +0100 1.2 +++ b/tools/python/xen/xend/image.py Wed Feb 22 19:40:19 2006 +0100 1.3 @@ -386,8 +386,8 @@ class HVMImageHandler(ImageHandler): 1.4 extra_pages = 0 1.5 if os.uname()[4] == 'ia64': 1.6 page_kb = 16 1.7 - # ROM size for guest firmware 1.8 - extra_pages = 1024 1.9 + # ROM size for guest firmware, ioreq page and xenstore page 1.10 + extra_pages = 1024 + 2 1.11 return mem + extra_pages * page_kb 1.12 1.13 def register_shutdown_watch(self):