[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH 01/19] xen: dump vNUMA information with debug key "u"
>>> On 21.11.14 at 16:06, <wei.liu2@xxxxxxxxxx> wrote: > Signed-off-by: Elena Ufimsteva <ufimtseva@xxxxxxxxx> > Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> > Cc: Jan Beulich <JBeulich@xxxxxxxx> > --- > xen/arch/x86/numa.c | 46 +++++++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 45 insertions(+), 1 deletion(-) > > diff --git a/xen/arch/x86/numa.c b/xen/arch/x86/numa.c > index 628a40a..d27c30f 100644 > --- a/xen/arch/x86/numa.c > +++ b/xen/arch/x86/numa.c > @@ -363,10 +363,12 @@ EXPORT_SYMBOL(node_data); > static void dump_numa(unsigned char key) > { > s_time_t now = NOW(); > - int i; > + int i, j, err, n; unsigned int please for all but err. > @@ -408,6 +410,48 @@ static void dump_numa(unsigned char key) > > for_each_online_node ( i ) > printk(" Node %u: %u\n", i, page_num_node[i]); > + > + if ( !d->vnuma ) > + continue; > + > + vnuma = d->vnuma; > + printk(" %u vnodes, %u vcpus\n", vnuma->nr_vnodes, d->max_vcpus); > + for ( i = 0; i < vnuma->nr_vnodes; i++ ) > + { > + err = snprintf(keyhandler_scratch, 12, "%u", > + vnuma->vnode_to_pnode[i]); > + if ( err < 0 || vnuma->vnode_to_pnode[i] == NUMA_NO_NODE ) > + snprintf(keyhandler_scratch, 3, "???"); strcpy() would be much cheaper here. > + > + printk(" vnode %3u - pnode %s\n", i, keyhandler_scratch); > + for ( j = 0; j < vnuma->nr_vmemranges; j++ ) > + { > + if ( vnuma->vmemrange[j].nid == i ) > + { > + mem = vnuma->vmemrange[j].end - > vnuma->vmemrange[j].start; > + printk(" %"PRIu64" MB: ", mem >> 20); > + printk(" 0x%"PRIx64" - 0x%"PRIx64"\n", > + vnuma->vmemrange[j].start, > + vnuma->vmemrange[j].end); Where possible please don't split printk()s of a single output line. Also %# instead of 0x% please (but maybe padding the values so the align properly would be the better change; that would also eliminate the need for explicit leading spaces). > + } > + } > + > + printk(" vcpus: "); > + for ( j = 0, n = 0; j < d->max_vcpus; j++ ) > + { > + if ( vnuma->vcpu_to_vnode[j] == i ) > + { > + if ( (n + 1) % 8 == 0 ) > + printk("%d\n", j); > + else if ( !(n % 8) && n != 0 ) > + printk(" %d ", j); > + else > + printk("%d ", j); Same here - left padding them to make them aligned will likely make the result quite a bit easier to grok especially for large guests. Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |