From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dario Faggioli Subject: [PATCH 6/7] xen: sched: fix an 'off by one \t' in credit2 debug dump Date: Thu, 08 Oct 2015 14:53:13 +0200 Message-ID: <20151008125312.12522.8482.stgit@Solace.station> References: <20151008124027.12522.42552.stgit@Solace.station> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta5.messagelabs.com ([195.245.231.135]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZkAhA-0001YH-O1 for xen-devel@lists.xenproject.org; Thu, 08 Oct 2015 12:53:16 +0000 Received: by wicgb1 with SMTP id gb1so24249127wic.1 for ; Thu, 08 Oct 2015 05:53:15 -0700 (PDT) In-Reply-To: <20151008124027.12522.42552.stgit@Solace.station> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xenproject.org Cc: Juergen Gross , George Dunlap List-Id: xen-devel@lists.xenproject.org Signed-off-by: Dario Faggioli Reviewed-by: Juergen Gross --- Cc: 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 178a665..9213d98 100644 --- a/xen/common/sched_credit2.c +++ b/xen/common/sched_credit2.c @@ -1917,7 +1917,7 @@ csched2_dump(const struct scheduler *ops) 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);