From patchwork Fri May 31 15:09:23 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yue Haibing X-Patchwork-Id: 10970369 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A2BF1912 for ; Fri, 31 May 2019 15:09:58 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 93A1A26E82 for ; Fri, 31 May 2019 15:09:58 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 87CF428A6A; Fri, 31 May 2019 15:09:58 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3891F26E82 for ; Fri, 31 May 2019 15:09:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726658AbfEaPJx (ORCPT ); Fri, 31 May 2019 11:09:53 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:46362 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726037AbfEaPJx (ORCPT ); Fri, 31 May 2019 11:09:53 -0400 Received: from DGGEMS413-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 8575913112EC03796CDD; Fri, 31 May 2019 23:09:48 +0800 (CST) Received: from localhost (10.133.213.239) by DGGEMS413-HUB.china.huawei.com (10.3.19.213) with Microsoft SMTP Server id 14.3.439.0; Fri, 31 May 2019 23:09:39 +0800 From: YueHaibing To: , , , CC: , , YueHaibing Subject: [PATCH] PCI: hv: Fix build error without CONFIG_SYSFS Date: Fri, 31 May 2019 23:09:23 +0800 Message-ID: <20190531150923.12376-1-yuehaibing@huawei.com> X-Mailer: git-send-email 2.10.2.windows.1 MIME-Version: 1.0 X-Originating-IP: [10.133.213.239] X-CFilter-Loop: Reflected Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP while building without CONFIG_SYSFS, fails as below: drivers/pci/controller/pci-hyperv.o: In function 'hv_pci_assign_slots': pci-hyperv.c:(.text+0x40a): undefined reference to 'pci_create_slot' drivers/pci/controller/pci-hyperv.o: In function 'pci_devices_present_work': pci-hyperv.c:(.text+0xc02): undefined reference to 'pci_destroy_slot' drivers/pci/controller/pci-hyperv.o: In function 'hv_pci_remove': pci-hyperv.c:(.text+0xe50): undefined reference to 'pci_destroy_slot' drivers/pci/controller/pci-hyperv.o: In function 'hv_eject_device_work': pci-hyperv.c:(.text+0x11f9): undefined reference to 'pci_destroy_slot' Select SYSFS while PCI_HYPERV is set to fix this. Reported-by: Hulk Robot Fixes: a15f2c08c708 ("PCI: hv: support reporting serial number as slot information") Signed-off-by: YueHaibing --- drivers/pci/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig index 2ab9240..6722952 100644 --- a/drivers/pci/Kconfig +++ b/drivers/pci/Kconfig @@ -182,6 +182,7 @@ config PCI_LABEL config PCI_HYPERV tristate "Hyper-V PCI Frontend" depends on X86 && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && X86_64 + select SYSFS help The PCI device frontend driver allows the kernel to import arbitrary PCI devices from a PCI backend to support PCI driver domains.