From: sd386@font.cl.cam.ac.uk Date: Fri, 19 Aug 2005 18:08:29 +0000 (+0000) Subject: Fix broken 'xm sedf', fixed by Ross Mcilroy X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16884^2~12 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b25e5aa958e7b4ff032c05d32dfc3de90cb2c4e4;p=xen.git Fix broken 'xm sedf', fixed by Ross Mcilroy Signed-off by: Stephan.Diestelhorst@{cl.cam.ac.uk, inf.tu-dresden.de} --- diff --git a/tools/python/xen/xm/main.py b/tools/python/xen/xm/main.py index e195196a5e..d711ef9d69 100644 --- a/tools/python/xen/xm/main.py +++ b/tools/python/xen/xm/main.py @@ -434,7 +434,7 @@ def xm_sedf(args): 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)