|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] Fix stack dump on improper use of set-vcpus
This patch adds an arg_check into the set_vcpus code in xm, so that we don't output a stack trace if <2 arguments are passed. Signed-off-by: Dan Smith <danms@xxxxxxxxxx> diff -r 289b73a5ace7 tools/python/xen/xm/main.py
--- a/tools/python/xen/xm/main.py Thu Nov 3 08:58:45 2005
+++ b/tools/python/xen/xm/main.py Thu Nov 3 14:03:38 2005
@@ -460,6 +460,8 @@
server.xend_domain_mem_target_set(dom, mem_target)
def xm_set_vcpus(args):
+ arg_check(args, 2, "set-vcpus")
+
from xen.xend.XendClient import server
server.xend_domain_set_vcpus(args[0], int(args[1]))
-- Dan Smith IBM Linux Technology Center Open Hypervisor Team email: danms@xxxxxxxxxx _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |