From 9d5c42425cc01f1900c59a517e57ef113f38b83e Mon Sep 17 00:00:00 2001 From: Dario Faggioli Date: Mon, 12 Oct 2015 16:00:52 +0200 Subject: [PATCH] sched: fix an 'off by one \t' in credit2 debug dump Signed-off-by: Dario Faggioli Reviewed-by: Juergen Gross Acked-by: George Dunlap --- xen/common/sched_credit2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2