Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751896AbdITMMc (ORCPT ); Wed, 20 Sep 2017 08:12:32 -0400 Received: from mx2.suse.de ([195.135.220.15]:36653 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751748AbdITMMb (ORCPT ); Wed, 20 Sep 2017 08:12:31 -0400 Date: Wed, 20 Sep 2017 14:12:26 +0200 From: Joerg Roedel To: Bjorn Helgaas Cc: Geert Uytterhoeven , Arnd Bergmann , Alex Williamson , linux-pci@vger.kernel.org, iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] pci: Add dummy for pci_acs_enabled() if CONFIG_PCI=n to fix iommmu build Message-ID: <20170920121226.74fnymghl6cnpi3g@suse.de> References: <1505132955-9517-1-git-send-email-geert@linux-m68k.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1505132955-9517-1-git-send-email-geert@linux-m68k.org> User-Agent: NeoMutt/20170421 (1.8.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1663 Lines: 49 Hey Bjorn, On Mon, Sep 11, 2017 at 02:29:15PM +0200, Geert Uytterhoeven wrote: > If CONFIG_PCI=n, and gcc (e.g. 4.1.2) decides not to inline > get_pci_function_alias_group(), the build fails with: > > drivers/iommu/iommu.o: In function `get_pci_function_alias_group': > iommu.c:(.text+0xfdc): undefined reference to `pci_acs_enabled' > > Due to the various dummies for PCI calls in the CONFIG_PCI=n case, > pci_acs_enabled() isn't actually ever called, but not all versions of > gcc are smart enough to realize that. > > While explicitly marking get_pci_function_alias_group() inline would fix > the build, this would inflate the code for the CONFIG_PCI=y case, as > get_pci_function_alias_group() is a not-so-small function called from > two places. > > Hence fix the issue by introducing a dummy for pci_acs_enabled() > instead. > > Signed-off-by: Geert Uytterhoeven > --- > include/linux/pci.h | 2 ++ > 1 file changed, 2 insertions(+) I am sending iommu-fixes upstream this week, and this would fit into it. Can you have a look please and ack it if you are okay with that? Thanks, Joerg > > diff --git a/include/linux/pci.h b/include/linux/pci.h > index f68c58a93dd045b9..f4f8ee5a7362e982 100644 > --- a/include/linux/pci.h > +++ b/include/linux/pci.h > @@ -1685,6 +1685,8 @@ static inline int pci_get_new_domain_nr(void) { return -ENOSYS; } > > #define dev_is_pci(d) (false) > #define dev_is_pf(d) (false) > +static inline bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags) > +{ return false; } > #endif /* CONFIG_PCI */ > > /* Include architecture-dependent settings and functions */ > -- > 2.7.4