From: Dario Faggioli Date: Mon, 12 Oct 2015 14:00:52 +0000 (+0200) Subject: sched: fix an 'off by one \t' in credit2 debug dump X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=9d5c42425cc01f1900c59a517e57ef113f38b83e;p=people%2Fjulieng%2Fxen-unstable.git sched: fix an 'off by one \t' in credit2 debug dump Signed-off-by: Dario Faggioli Reviewed-by: Juergen Gross Acked-by: George Dunlap --- diff --git a/xen/common/sched_credit2.c b/xen/common/sched_credit2.c index 912e1a2e0c..66957291e3 100644 --- a/xen/common/sched_credit2.c +++ b/xen/common/sched_credit2.c @@ -1933,7 +1933,7 @@ csched2_dump(const struct scheduler *ops) struct csched2_dom *sdom; sdom = list_entry(iter_sdom, struct csched2_dom, sdom_elem); - printk("\tDomain: %d w %d v %d\n\t", + printk("\tDomain: %d w %d v %d\n", sdom->dom->domain_id, sdom->weight, sdom->nr_vcpus);