search for: xend_domain_cpu_sedf_set

Displaying 2 results from an estimated 2 matches for "xend_domain_cpu_sedf_set".

2005 Dec 26
1
[PATCH] symmetricalization of system info command xm info, top, dmesg and log
...by: Yoshinori Katase <y_katase@soft.fujitsu.com> Best Regards, Yoshinori Katase diff -r 829517be689f tools/python/xen/xm/main.py --- a/tools/python/xen/xm/main.py Fri Dec 23 15:42:46 2005 +++ b/tools/python/xen/xm/main.py Mon Dec 26 10:16:56 2005 @@ -625,6 +625,8 @@ server.xend_domain_cpu_sedf_set(dom, *v) def xm_info(args): + arg_check(args, "info", 0) + from xen.xend.XendClient import server info = server.xend_node() @@ -645,9 +647,12 @@ def xm_top(args): + arg_check(args, "top", 0) + os.execvp(''xentop'', [''xentop'...
2006 Mar 07
8
[PATCH] xm,xend: flesh out xm sched-sedf
...ate Time(s)'' for dom in doms: @@ -617,12 +641,88 @@ server.xend_node_cpu_bvt_slice_set(slice) def xm_sched_sedf(args): - arg_check(args, "sched-sedf", 6) - - dom = args[0] - v = map(int, args[1:6]) - from xen.xend.XendClient import server - server.xend_domain_cpu_sedf_set(dom, *v) + def print_sedf(info): + print( ("%(name)-32s %(dom)3d %(period)12d %(slice)12d %(latency)12d" + + " %(extratime)10d %(weight)7d") % info) + + # FIXME: this can probably go away if someone points me to the proper way. + def domid_match(do...