search for: domid_match

Displaying 1 result from an estimated 1 matches for "domid_match".

Did you mean: dmi_match
2006 Mar 07
8
[PATCH] xm,xend: flesh out xm sched-sedf
...n_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(domid, info): + d = "" + f = "" + try: + d = int(domid) + f = ''dom'' + except: + d = domid + f = ''name'' + + return (d == info[f]) + + # we want to just...