From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755115AbcHSB4N (ORCPT ); Thu, 18 Aug 2016 21:56:13 -0400 Received: from p3plsmtps2ded03.prod.phx3.secureserver.net ([208.109.80.60]:56870 "EHLO p3plsmtps2ded03.prod.phx3.secureserver.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754117AbcHSBzY (ORCPT ); Thu, 18 Aug 2016 21:55:24 -0400 x-originating-ip: 72.167.245.219 From: Matthew Wilcox To: x86@kernel.org, linux-kernel@vger.kernel.org, linux-nvdimm@ml01.01.org Cc: Matthew Wilcox Subject: [PATCH 2/2] x86: Turn down the scary 'no PCI' warning Date: Thu, 18 Aug 2016 12:12:55 -0700 Message-Id: <1471547575-14748-2-git-send-email-mawilcox@linuxonhyperv.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1471547575-14748-1-git-send-email-mawilcox@linuxonhyperv.com> References: <1471547575-14748-1-git-send-email-mawilcox@linuxonhyperv.com> X-CMAE-Envelope: MS4wfOyOuCUmjS6hGYMfQEmrFlEThdNwahSmxQTuHwlIiGWsC74SHZixlD0LVGrYUaiiY3qDF6Y4zrUgPhGRll4rK6Ydb/vkbbOwzLpJji2X2Vurhh01vw2L EtbNF6BJB6HuUvxP/ydojrON18gniVDfXBAW8MonG2T6YWbk6rgJJdMGTvYkKM/lYJDcao0edYa6mQO/ubGR/kIZO+ssg7hN8Y20qBVMrckWPT7G7f8mAalI H1BGO45E3iBEY1Y3W5KxBwMVAILnh9323KhfcG+5PuwA5/alpeu9SC/0+S6N3t/+ Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Matthew Wilcox Hyper-V Generation 2 guests do not have PCI hardware. It is therefore not 'Fatal' to lack PCI config space, and those booting with the 'quiet' option do not need to see a message at all. I deem this to be 'informational' rather than 'normal but significant', at least on some hardware. Signed-off-by: Matthew Wilcox --- arch/x86/pci/init.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/x86/pci/init.c b/arch/x86/pci/init.c index adb62aa..595840a 100644 --- a/arch/x86/pci/init.c +++ b/arch/x86/pci/init.c @@ -32,8 +32,7 @@ static __init int pci_arch_init(void) pci_direct_init(type); #endif if (!raw_pci_ops && !raw_pci_ext_ops) - printk(KERN_ERR - "PCI: Fatal: No config space access function found\n"); + pr_info("PCI: No config space access function found\n"); dmi_check_pciprobe(); -- 2.8.1