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-api

[Xen-API] [PATCH] bump up the host memory size in the hypercall simulato

To: xen-api@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-API] [PATCH] bump up the host memory size in the hypercall simulator
From: David Scott <dave.scott@xxxxxxxxxxxxx>
Date: Wed, 7 Apr 2010 11:43:47 +0100
Delivery-date: Wed, 07 Apr 2010 03:40:43 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-post: <mailto:xen-api@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>, <mailto:xen-api-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>, <mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-api-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User David Scott <dave.scott@xxxxxxxxxxxxx>
# Date 1270636929 -3600
# Node ID 4b55d8f5ef5acc13d54680a7e98728daf30bc53a
# Parent  b08de85a8e1e818051486b6e1bd88bd828093862
CA-34888: the Java bindings tests expect there to be enough memory to install 
from a Win7 (64 bit) template plus a bit. Bump up the default size of the 
simulated host in xiu.

Signed-off-by: David Scott <dave.scott@xxxxxxxxxxxxx>

diff -r b08de85a8e1e -r 4b55d8f5ef5a ocaml/xiu/xiu.ml
--- a/ocaml/xiu/xiu.ml  Wed Apr 07 11:40:51 2010 +0100
+++ b/ocaml/xiu/xiu.ml  Wed Apr 07 11:42:09 2010 +0100
@@ -37,8 +37,8 @@
 let nb_cpu_threads = ref 1
 let cpu_usage = ref 1000L
 let cpu_speed_mhz = ref (1 * 1000) (* by default 1 ghz *)
-let physical_free_kib = ref ((4 * 1024 - 1) * 1024) (* by default ~4gb of free 
memory *)
-let physical_memory_kib = ref (4 * 1024 * 1024) (* by default 4gb of memory *)
+let physical_free_kib = ref ((16 * 1024 - 1) * 1024) (* by default ~16gb of 
free memory *)
+let physical_memory_kib = ref (16 * 1024 * 1024) (* by default 16gb of memory 
*)
 let host_m = Mutex.create ()
 
 let extra_kib = 512
1 file changed, 2 insertions(+), 2 deletions(-)
ocaml/xiu/xiu.ml |    4 ++--


Attachment: xen-api.hg.patch
Description: Text Data

_______________________________________________
xen-api mailing list
xen-api@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/mailman/listinfo/xen-api
<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-API] [PATCH] bump up the host memory size in the hypercall simulator, David Scott <=