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] Remove keyword from call to xc.domain_setmaxmem; keyword

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Remove keyword from call to xc.domain_setmaxmem; keyword support for this call
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Sun, 27 Nov 2005 03:50:06 +0000
Delivery-date: Sun, 27 Nov 2005 03:50:16 +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 emellor@xxxxxxxxxxxxxxxxxxxxxx
# Node ID 85a1a57320a6a5ba585f84c156c8f44cd5336fe6
# Parent  f37f1c9ec2ec97c10c81a26014121a47586d9732
Remove keyword from call to xc.domain_setmaxmem; keyword support for this call
was removed with changeset 7955:f72da8799418.

Signed-off-by: Ewan Mellor <ewan@xxxxxxxxxxxxx>

diff -r f37f1c9ec2ec -r 85a1a57320a6 tools/python/xen/xend/XendDomain.py
--- a/tools/python/xen/xend/XendDomain.py       Sun Nov 27 01:06:44 2005
+++ b/tools/python/xen/xend/XendDomain.py       Sun Nov 27 01:28:11 2005
@@ -480,8 +480,7 @@
         dominfo = self.domain_lookup(domid)
         maxmem = int(mem) * 1024
         try:
-            return xc.domain_setmaxmem(dominfo.getDomid(),
-                                       maxmem_kb = maxmem)
+            return xc.domain_setmaxmem(dominfo.getDomid(), maxmem)
         except Exception, ex:
             raise XendError(str(ex))
 

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Remove keyword from call to xc.domain_setmaxmem; keyword support for this call, Xen patchbot -unstable <=