Displaying 1 result from an estimated 1 matches for "op_cpu_sedf_get".
2005 Oct 13
2
[PATCH] sedf get in XendClient API
...51
class URL:
...
+ def xend_domain_cpu_sedf_get(self, id):
+ return self.xendPost(self.domainurl(id),
+ {''op'' : ''cpu_sedf_get''})
tools/python/xen/xend/server/SrvDomain.py
class SrvDomain(SrvDir):
line 212
...
+ def op_cpu_sedf_get(self, op, req):
+ fn = FormFn(self.xd.domain_cpu_sedf_get,
+ [[''dom'', ''int'']])
+ val = fn(req.args, {''dom'': self.dom.id})
+ return val
If need be I''ll supply the traditional patches....
Regards...