From nobody Mon Feb 9 16:55:41 2026 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1559039698; cv=none; d=zoho.com; s=zohoarc; b=NleAItFa/ZqGl+2a07lElttae6fwcPjLijELjlP+2rrG9LgF89gVt4HAWFlzT2h8YbfN2zur4E21VIZ/p7DB0WreA3LsOXU4yDrLaDp72vYDNLs2zaz0l5E6JdxX0X55QPWYFFC/WHg+Q+DyrpBH9El0n+BtccwDp2jOG7F7R+o= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1559039698; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=R9ZvKkAQVs+GrBsXZznw6EKfNE8RbyLCUpdy1lE+M5U=; b=CwTP39YDtfS+ivOtNrk23lmW9iT2poXIOsodEvlG/rSOgUrxanGySx7bLItOQQVbZ4Bbp+0tj2TeLJRB9xpO31L3Pp1UeYYLl5w2OyVT588oz912a2MhDN4EiOGhzPh5bRZgXCYGb/o6gMkzB2MzMQT0kOLP1jSJdMSNvYU5lF0= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1559039698344381.84231888053876; Tue, 28 May 2019 03:34:58 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hVZQm-00065t-R8; Tue, 28 May 2019 10:34:08 +0000 Received: from us1-rack-dfw2.inumbo.com ([104.130.134.6]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hVZQE-0004tm-QN for xen-devel@lists.xenproject.org; Tue, 28 May 2019 10:33:34 +0000 Received: from mx1.suse.de (unknown [195.135.220.15]) by us1-rack-dfw2.inumbo.com (Halon) with ESMTPS id 081a39b4-8134-11e9-8980-bc764e045a96; Tue, 28 May 2019 10:33:29 +0000 (UTC) Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 981E1AF38; Tue, 28 May 2019 10:33:27 +0000 (UTC) X-Inumbo-ID: 081a39b4-8134-11e9-8980-bc764e045a96 X-Virus-Scanned: by amavisd-new at test-mx.suse.de From: Juergen Gross To: xen-devel@lists.xenproject.org Date: Tue, 28 May 2019 12:32:56 +0200 Message-Id: <20190528103313.1343-44-jgross@suse.com> X-Mailer: git-send-email 2.16.4 In-Reply-To: <20190528103313.1343-1-jgross@suse.com> References: <20190528103313.1343-1-jgross@suse.com> Subject: [Xen-devel] [PATCH 43/60] xen/sched: add a percpu resource index X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Juergen Gross , George Dunlap , Dario Faggioli MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Add a percpu variable holding the index of the cpu in the current sched_resource structure. This index is used to get the correct vcpu of a sched_unit on a specific cpu. For now this index will be zero for all cpus, but with core scheduling it will be possible to have higher values, too. Signed-off-by: Juergen Gross --- RFC V2: new patch (carved out from RFC V1 patch 49) --- xen/common/schedule.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/xen/common/schedule.c b/xen/common/schedule.c index b4e87e2a58..58d3de340e 100644 --- a/xen/common/schedule.c +++ b/xen/common/schedule.c @@ -68,6 +68,7 @@ static void poll_timer_fn(void *data); /* This is global for now so that private implementations can reach it */ DEFINE_PER_CPU(struct scheduler *, scheduler); DEFINE_PER_CPU(struct sched_resource *, sched_res); +static DEFINE_PER_CPU(unsigned int, sched_res_idx); =20 /* Scratch space for cpumasks. */ DEFINE_PER_CPU(cpumask_t, cpumask_scratch); @@ -78,6 +79,12 @@ extern const struct scheduler *__start_schedulers_array[= ], *__end_schedulers_arr =20 static struct scheduler __read_mostly ops; =20 +static inline struct vcpu *sched_unit2vcpu_cpu(struct sched_unit *unit, + unsigned int cpu) +{ + return unit->domain->vcpu[unit->unit_id + per_cpu(sched_res_idx, cpu)]; +} + static inline struct scheduler *dom_scheduler(const struct domain *d) { if ( likely(d->cpupool !=3D NULL) ) @@ -1863,7 +1870,7 @@ static void sched_slave(void) =20 pcpu_schedule_unlock_irq(lock, cpu); =20 - sched_context_switch(vprev, next->vcpu, now); + sched_context_switch(vprev, sched_unit2vcpu_cpu(next, cpu), now); } =20 /* @@ -1922,7 +1929,7 @@ static void schedule(void) =20 pcpu_schedule_unlock_irq(lock, cpu); =20 - vnext =3D next->vcpu; + vnext =3D sched_unit2vcpu_cpu(next, cpu); sched_context_switch(vprev, vnext, now); } =20 --=20 2.16.4 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel