From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juergen Gross Subject: Re: [PATCH 1/9] xen: sched: fix an 'off by one \t' in credit2 debug dump Date: Thu, 1 Oct 2015 07:22:20 +0200 Message-ID: <560CC30C.9010802@suse.com> References: <20150929164726.17589.96920.stgit@Solace.station> <20150929165534.17589.26409.stgit@Solace.station> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" 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 1ZhWJy-0007c5-GA for xen-devel@lists.xenproject.org; Thu, 01 Oct 2015 05:22:22 +0000 In-Reply-To: <20150929165534.17589.26409.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: George Dunlap List-Id: xen-devel@lists.xenproject.org On 09/29/2015 06:55 PM, Dario Faggioli wrote: > 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 75e0321..46645f8 100644 > --- a/xen/common/sched_credit2.c > +++ b/xen/common/sched_credit2.c > @@ -1931,7 +1931,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); > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xen.org > http://lists.xen.org/xen-devel >