From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH 5/7] xen: sched: get rid of the per domain vCPU list in Credit2 Date: Thu, 8 Oct 2015 14:10:04 +0100 Message-ID: <56166B2C.2030707@citrix.com> References: <20151008124027.12522.42552.stgit@Solace.station> <20151008125305.12522.60745.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 1ZkAxU-0003NX-Bk for xen-devel@lists.xenproject.org; Thu, 08 Oct 2015 13:10:08 +0000 In-Reply-To: <20151008125305.12522.60745.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 08/10/15 13:53, Dario Faggioli wrote: > diff --git a/xen/common/sched_rt.c b/xen/common/sched_rt.c > index 797adc1..0ca4902 100644 > --- a/xen/common/sched_rt.c > +++ b/xen/common/sched_rt.c > @@ -1147,7 +1147,7 @@ rt_dom_cntl( > break; > } > spin_lock_irqsave(&prv->lock, flags); > - for_each_vcpu( sdom->dom, vc ) > + for_each_vcpu( d, vc ) > { > svc = rt_vcpu(vc); > svc->period = MICROSECS(op->u.rtds.period); /* transfer to nanosec */ This hunk looks like it wants to be in the previous patch.