From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juergen Gross Subject: Re: [PATCH v3 2/5] build: Hook the schedulers into Kconfig Date: Fri, 8 Jan 2016 17:13:01 +0100 Message-ID: <568FE00D.6080906@suse.com> References: <1452187761-38328-1-git-send-email-jonathan.creekmore@gmail.com> <1452187761-38328-3-git-send-email-jonathan.creekmore@gmail.com> <20160108154744.GE32260@char.us.oracle.com> <568FDBBA.8050103@citrix.com> 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 1aHZey-0006Se-KJ for xen-devel@lists.xenproject.org; Fri, 08 Jan 2016 16:13:04 +0000 In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Jonathan Creekmore , Andrew Cooper Cc: George Dunlap , xen-devel@lists.xenproject.org, Dario Faggioli List-Id: xen-devel@lists.xenproject.org On 08/01/16 17:02, Jonathan Creekmore wrote: > > Andrew Cooper writes: > >> On 08/01/16 15:47, Konrad Rzeszutek Wilk wrote: >>> On Thu, Jan 07, 2016 at 11:29:18AM -0600, Jonathan Creekmore wrote: >>>> Allow the schedulers to be independently enabled or disabled at >>>> compile-time. To match existing behavior, all four schedulers are >>>> compiled in by default, although the Credit2, RTDS, and ARINC653 are >>>> marked EXPERIMENTAL to match their not currently supported status. >>> By unmarking all of them in sequence I was able to get this: >>> >>> # >>> # Schedulers >>> # >>> # CONFIG_SCHED_CREDIT is not set >>> # CONFIG_SCHED_CREDIT2 is not set >>> # CONFIG_SCHED_RTDS is not set >>> # CONFIG_SCHED_ARINC653 is not set >>> # CONFIG_SCHED_CREDIT_DEFAULT is not set >>> # CONFIG_SCHED_CREDIT2_DEFAULT is not set >>> # CONFIG_SCHED_RTDS_DEFAULT is not set >>> # CONFIG_SCHED_ARINC653_DEFAULT is not set >>> CONFIG_SCHED_DEFAULT="credit" >>> >>> >>> And the hypervisor did build with: >>> >>> [konrad@char xen]$ nm --defined xen-syms |grep schedulers >>> ffff82d080290d58 D __end_schedulers_array >>> ffff82d080290d58 D __start_schedulers_array >>> >>> :-) >>> >>> Not exactly sure if there is some way to make us _not_ shoot >>> ourselves in the foot by mistake. >>> >>> Perhaps the build should complain if the size of the >>> __schedulers_array is zero? >> >> Hmm yes - an ASSERT() at the bottom of the linker file would be a very >> good defensive measure. >> >> A hypervisor without any schedulers compiled in will be rather sad. > > I can definitely add that in. I think there should be an ASSERT (or some other measure) to ensure the default scheduler is available. Juergen