Displaying 1 result from an estimated 1 matches for "xend_domain_cpu_atropos_set".
2004 Oct 18
3
potential bug in "xm atropos" implementation
...int xtratime)
which takes 6 arguments
>From tools/python/xen/xm/main.py:
class ProgAtropos(Prog):
<snip>
def main(self, args):
if len(args) != 5: self.err("%s: Invalid argument(s)" % args[0])
dom = args[1]
v = map(int, args[2:5])
server.xend_domain_cpu_atropos_set(dom, *v)
Now if you specify all 6 arguments on the command line, xm atropos
fails with "Invalid arguments" due to the above code. If you give 5
arguments, ProgAtropos fails since the corresponding libxc function
call takes 6 arguments.
Following patch will fix it:
Index: main.py
=======...