Displaying 4 results from an estimated 4 matches for "domain_sched_credit_set".
2007 Jan 29
5
Permission denied in domain_sched_credit_set
...#39;'ve started getting this error on xm create:
[2007-01-29 12:23:41 7373] ERROR (__init__:1072) (13, ''Permission denied'')
Traceback (most recent call last):
File "/home/brendan/dev/xen/xen-ss.hg/dist/install/usr/lib/python/xen/xend/Xen
dDomain.py", line 1364, in domain_sched_credit_set
Error: (13, ''Permission denied'')
I haven''t specified any scheduler options (so I''m running credit). Is
anyone else seeing this?
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-d...
2006 Aug 17
4
[PATCH]configuration files(sched-credit)
Currently with the credit scheduler, cpu_weight cannot be assigned to guest
domains at boot time.(it can be set with xm sched-weight after booting)
This patch allows CPU weight, and CAP to be set by the Xen configuration
files.
Specification:
The following can be added to the Xen configuration files.
1.CPU WEIGHT [OPTIONAL]
cpu_weight = cpu weight value
-sets the cpu time ratio to be
2007 May 04
0
[PATCH] 3/4 "nemesis" scheduling domains for Xen
....
diff -r baff9c7cc4b3 tools/python/xen/xend/server/SrvDomain.py
--- a/tools/python/xen/xend/server/SrvDomain.py Fri May 04 11:23:25 2007 -0400
+++ b/tools/python/xen/xend/server/SrvDomain.py Fri May 04 14:26:45 2007 -0400
@@ -156,6 +156,33 @@ class SrvDomain(SrvDir):
fn = FormFn(self.xd.domain_sched_credit_set,
[[''dom'', ''int''],
[''weight'', ''int'']])
+ val = fn(req.args, {''dom'': self.dom.domid})
+ return val
+
+
+ def op_domain_add_adom(self, _, req):
+...
2010 Jun 28
8
[PATCH] add xl ocaml bindings
...+ | Button_Sleep
+
+external button_press : domid -> button -> unit = "stub_xl_button_press"
+external physinfo : unit -> physinfo = "stub_xl_physinfo"
+
+external domain_sched_credit_get : domid -> sched_credit = "stub_xl_sched_credit_domain_get"
+external domain_sched_credit_set : domid -> sched_credit -> unit = "stub_xl_sched_credit_domain_set"
+
+external send_trigger : domid -> string -> int -> unit = "stub_xl_send_trigger"
+external send_sysrq : domid -> char -> unit = "stub_xl_send_sysrq"
+external send_debug_keys : d...