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

[Xen-tools] [PATCH] [Trivial] Fix xm sedf command

To: <xen-tools@xxxxxxxxxxxxxxxxxxx>
Subject: [Xen-tools] [PATCH] [Trivial] Fix xm sedf command
From: "Ross C Mcilroy" <mcilrorc@xxxxxxxxxxxxx>
Date: Wed, 17 Aug 2005 15:08:35 +0100
Delivery-date: Wed, 17 Aug 2005 14:06:37 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-tools-request@lists.xensource.com?subject=help>
List-id: Xen control tools developers <xen-tools.lists.xensource.com>
List-post: <mailto:xen-tools@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-tools>, <mailto:xen-tools-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-tools>, <mailto:xen-tools-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-tools-bounces@xxxxxxxxxxxxxxxxxxx
Thread-index: AcWjLlaruw5TzMwST3WUmz7a0aHDagABZVCm
Thread-topic: [PATCH] [Trivial] Fix xm sedf command

Hi,

While testing the previous patch I noticed that xm sedf command doesn't seem to work anymore.  This trivial patch fixes it.

Cheers

Ross


# HG changeset patch
# User rcmcilro@xxxxxxxxxxxxxxxxxxxxx
# Node ID 036cb8ef42f93d2df19b1ed183afc19a150d6ddd
# Parent  72872296d9306c4b83cba0d42855b7eee089fecd
Fix xm sedf command

diff -r 72872296d930 -r 036cb8ef42f9 tools/python/xen/xm/main.py
--- a/tools/python/xen/xm/main.py       Wed Aug 17 13:15:52 2005
+++ b/tools/python/xen/xm/main.py       Wed Aug 17 13:50:10 2005
@@ -469,7 +469,7 @@
     arg_check(args, 6, "sedf")
    
     dom = args[0]
-    v = map(int, args[1:5])
+    v = map(int, args[1:6])
     from xen.xend.XendClient import server
     server.xend_domain_cpu_sedf_set(dom, *v)

_______________________________________________
Xen-tools mailing list
Xen-tools@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-tools
<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-tools] [PATCH] [Trivial] Fix xm sedf command, Ross C Mcilroy <=