From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Creekmore Subject: Re: [PATCH 1/4] build: Hook the schedulers into Kconfig Date: Fri, 18 Dec 2015 10:43:35 -0600 Message-ID: References: <1450385974-12732-1-git-send-email-jonathan.creekmore@gmail.com> <1450385974-12732-2-git-send-email-jonathan.creekmore@gmail.com> <5673CA73.3030007@citrix.com> 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 1a9y84-0006mc-Af for xen-devel@lists.xenproject.org; Fri, 18 Dec 2015 16:43:40 +0000 Received: by mail-yk0-f169.google.com with SMTP id p130so64040284yka.1 for ; Fri, 18 Dec 2015 08:43:38 -0800 (PST) In-reply-to: <5673CA73.3030007@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Andrew Cooper Cc: George Dunlap , Jonathan Creekmore , Dario Faggioli , xen-devel@lists.xenproject.org List-Id: xen-devel@lists.xenproject.org Andrew Cooper writes: > On 17/12/2015 20:59, Jonathan Creekmore wrote: >> Allow the schedulers to be independently enabled or disabled at >> compile-time instead of just allowing the scheduler to be selected on >> the command line. To match existing behavior, all four schedulers are >> compiled in by default, although the RTDS and ARINC653 are marked >> EXPERIMENTAL to match their not currently supported status. >> >> CC: George Dunlap >> CC: Dario Faggioli >> Signed-off-by: Jonathan Creekmore > > With the suggestions Dario made, and one minor nit below, > > Reviewed-by: Andrew Cooper > I plan on making those changes. >> diff --git a/xen/common/Makefile b/xen/common/Makefile >> index 8ab15ba..3a2026a 100644 >> --- a/xen/common/Makefile >> +++ b/xen/common/Makefile >> @@ -30,10 +30,10 @@ obj-y += rangeset.o >> obj-y += radix-tree.o >> obj-y += rbtree.o >> obj-y += rcupdate.o >> -obj-y += sched_credit.o >> -obj-y += sched_credit2.o >> -obj-y += sched_arinc653.o >> -obj-y += sched_rt.o >> +obj-$(CONFIG_SCHED_CREDIT) += sched_credit.o >> +obj-$(CONFIG_SCHED_CREDIT2) += sched_credit2.o >> +obj-$(CONFIG_SCHED_ARINC653) += sched_arinc653.o >> +obj-$(CONFIG_SCHED_RTDS) += sched_rt.o > > I know it was wrong before, but please reorder Easy enough to do. I will take care of that.