From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1945998Ab2JYNrA (ORCPT ); Thu, 25 Oct 2012 09:47:00 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:47109 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935671Ab2JYNq7 (ORCPT ); Thu, 25 Oct 2012 09:46:59 -0400 Date: Thu, 25 Oct 2012 09:46:30 -0400 From: Konrad Rzeszutek Wilk To: Stefano Stabellini Cc: Jan Beulich , "gregkh@linuxfoundation.org" , Randy Dunlap , Stephen Rothwell , Jeremy Fitzhardinge , "virtualization@lists.linux-foundation.org" , xen-devel , "linux-kernel@vger.kernel.org" , "linux-next@vger.kernel.org" Subject: Re: [Xen-devel] linux-next: Tree for Oct 24 (xen) Message-ID: <20121025134628.GE26209@localhost.localdomain> References: <20121024151957.28a1626cd9a59c014e78c401@canb.auug.org.au> <50885EA8.3050007@xenotime.net> <508906CE02000078000A4553@nat28.tlf.novell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-Source-IP: acsinet21.oracle.com [141.146.126.237] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Oct 25, 2012 at 11:48:30AM +0100, Stefano Stabellini wrote: > On Thu, 25 Oct 2012, Jan Beulich wrote: > > >>> On 24.10.12 at 23:33, Randy Dunlap wrote: > > > On 10/23/2012 09:19 PM, Stephen Rothwell wrote: > > > > > >> Hi all, > > >> > > >> Changes since 201201023: > > >> > > > > > > on x86_64: > > > > > > drivers/built-in.o: In function `dbgp_reset_prep': > > > (.text+0xb96b5): undefined reference to `xen_dbgp_reset_prep' > > > drivers/built-in.o: In function `dbgp_external_startup': > > > (.text+0xb9d95): undefined reference to `xen_dbgp_external_startup' > > > > > > > > > Full randconfig file is attached. > > > > So this is because with !USB_SUPPORT but EARLY_PRINTK_DBGP > > dbgp_reset_prep() and dbgp_external_startup() get pointlessly > > defined and exported. This got broken by the merge > > recommendation for the ARM side changes (originally compilation > > of drivers/xen/dbgp.c depended on just CONFIG_XEN_DOM0). > > > > >From my pov, fixing the USB side would be the clean solution (i.e. > > putting those function definitions inside a CONFIG_USB_SUPPORT > > conditional). > > > > The alternative of a smaller change would be to extend the > > conditional around the respective xen_dbgp_...() declarations > > in include/linux/usb/ehci_def.h to become > > > > #if defined(CONFIG_XEN_DOM0) && defined(CONFIG_USB_SUPPORT) > > > > Please advise towards your preference. > > I think that your first suggestion is the right one. Can you guys spin up a patch pls and make sure it does not break compilation. Thx. > > > Otherwise we could also make drivers/xen/dbgp.c compile if > CONFIG_EARLY_PRINTK_DBGP rather than CONFIG_USB_SUPPORT. > I think that it would create fewer maintenance pains if dbgp_reset_prep > and dbgp_external_startup had the same compile requirements as their xen > counterparts (aside from Xen support of course).