From mboxrd@z Thu Jan 1 00:00:00 1970 From: George Dunlap Subject: Re: [PATCH 6/7] xen: sched: fix an 'off by one \t' in credit2 debug dump Date: Thu, 8 Oct 2015 16:42:14 +0100 Message-ID: <56168ED6.90306@citrix.com> References: <20151008124027.12522.42552.stgit@Solace.station> <20151008125312.12522.8482.stgit@Solace.station> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZkDKm-0001db-4S for xen-devel@lists.xenproject.org; Thu, 08 Oct 2015 15:42:20 +0000 In-Reply-To: <20151008125312.12522.8482.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: Dario Faggioli , xen-devel@lists.xenproject.org Cc: Juergen Gross , George Dunlap List-Id: xen-devel@lists.xenproject.org On 08/10/15 13:53, Dario Faggioli wrote: > Signed-off-by: Dario Faggioli > Reviewed-by: Juergen Gross Oh, I didn't realize this one was going to have stuff from the previous series as well. :-) Acked-by: George Dunlap > --- > 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); >