From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH] arm: don't build core parking code Date: Thu, 22 Oct 2015 16:10:03 +0100 Message-ID: <1445526603.2374.3.camel@citrix.com> References: <56251EE502000078000AC6B5@prv-mh.provo.novell.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZpHVn-0001s2-Bj for xen-devel@lists.xenproject.org; Thu, 22 Oct 2015 15:10:39 +0000 In-Reply-To: <56251EE502000078000AC6B5@prv-mh.provo.novell.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: Jan Beulich , xen-devel Cc: Keir Fraser , Ian Jackson , Tim Deegan List-Id: xen-devel@lists.xenproject.org On Mon, 2015-10-19 at 08:48 -0600, Jan Beulich wrote: > It's wired up on x86 only. > > Signed-off-by: Jan Beulich Acked-by: Ian Campbell (ARM + REST hats) I tried to apply but it didn't for some reason. I didn't investigate, I guess you will push yourself. > --- a/xen/arch/x86/Rules.mk > +++ b/xen/arch/x86/Rules.mk > @@ -13,6 +13,7 @@ HAS_EHCI := y > HAS_KEXEC := y > HAS_GDBSX := y > HAS_PDX := y > +HAS_CORE_PARKING := y > xenoprof := y > > CFLAGS += -I$(BASEDIR)/include > --- b/xen/common/Makefile > +++ a/xen/common/Makefile > @@ -1,5 +1,5 @@ > obj-y += bitmap.o > -obj-y += core_parking.o > +obj-$(HAS_CORE_PARKING) += core_parking.o > obj-y += cpu.o > obj-y += cpupool.o > obj-$(HAS_DEVICE_TREE) += device_tree.o > > >