WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Cset 8916 missed two extra pages for VT-i domain and thu

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Cset 8916 missed two extra pages for VT-i domain and thus breaks domain
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 22 Feb 2006 19:54:08 +0000
Delivery-date: Wed, 22 Feb 2006 19:54:25 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID f1c75df46b46cf2b71d949b63f988d8b781302b0
# Parent  049929854f7f0c1707ac395c92fea3db2ddbc91f
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@xxxxxxxxx>

diff -r 049929854f7f -r f1c75df46b46 tools/python/xen/xend/image.py
--- a/tools/python/xen/xend/image.py    Wed Feb 22 18:38:50 2006
+++ b/tools/python/xen/xend/image.py    Wed Feb 22 18:40:19 2006
@@ -386,8 +386,8 @@
         extra_pages = 0
         if os.uname()[4] == 'ia64':
             page_kb = 16
-            # ROM size for guest firmware
-            extra_pages = 1024
+            # ROM size for guest firmware, ioreq page and xenstore page
+            extra_pages = 1024 + 2
         return mem + extra_pages * page_kb
 
     def register_shutdown_watch(self):

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Cset 8916 missed two extra pages for VT-i domain and thus breaks domain, Xen patchbot -unstable <=