Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758995AbaLKVR3 (ORCPT ); Thu, 11 Dec 2014 16:17:29 -0500 Received: from mail-bl2on0129.outbound.protection.outlook.com ([65.55.169.129]:25185 "EHLO na01-bl2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1758801AbaLKVR1 (ORCPT ); Thu, 11 Dec 2014 16:17:27 -0500 Date: Thu, 11 Dec 2014 12:45:15 -0800 From: Guenter Roeck To: Bjorn Helgaas CC: Rajat Jain , "linux-kernel@vger.kernel.org" , "linux-pci@vger.kernel.org" , Rajat Jain Subject: Re: [PATCH v2] PCI: pciehp: Check link state before accessing device during removal Message-ID: <20141211204515.GA4472@svl-evodev-groeck.juniper.net> References: <546E7120.5080505@gmail.com> <20141211002630.GC22886@google.com> <20141211163831.GA2845@svl-evodev-groeck.juniper.net> 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-Originating-IP: [66.129.239.11] X-ClientProxiedBy: CY1PR09CA0039.namprd09.prod.outlook.com (25.160.223.49) To CO1PR05MB522.namprd05.prod.outlook.com (10.141.72.14) X-Microsoft-Antispam: UriScan:; X-Microsoft-Antispam: BCL:0;PCL:0;RULEID:;SRVR:CO1PR05MB522; X-Exchange-Antispam-Report-Test: UriScan:; X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:(601003);SRVR:CO1PR05MB522; X-Forefront-PRVS: 0422860ED4 X-Forefront-Antispam-Report: SFV:NSPM;SFS:(10019020)(6069001)(6009001)(189002)(24454002)(377454003)(164054003)(199003)(51704005)(97736003)(99396003)(122386002)(105586002)(66066001)(40100003)(110136001)(92566001)(68736005)(106356001)(107046002)(77096005)(120916001)(64706001)(42186005)(20776003)(83506001)(31966008)(19580405001)(4396001)(46406003)(93886004)(50986999)(21056001)(54356999)(101416001)(19580395003)(23726002)(46102003)(47776003)(77156002)(97756001)(87976001)(33656002)(86362001)(76506005)(62966003)(76176999)(50466002);DIR:OUT;SFP:1102;SCL:1;SRVR:CO1PR05MB522;H:localhost;FPR:;SPF:None;MLV:sfv;PTR:InfoNoRecords;MX:1;A:1;LANG:en; X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:;SRVR:CO1PR05MB522; X-OriginatorOrg: juniper.net Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Dec 11, 2014 at 01:26:47PM -0700, Bjorn Helgaas wrote: > On Thu, Dec 11, 2014 at 9:38 AM, Guenter Roeck wrote: > > On Wed, Dec 10, 2014 at 05:26:30PM -0700, Bjorn Helgaas wrote: > >> On Thu, Nov 20, 2014 at 02:54:24PM -0800, Rajat Jain wrote: > >> > While removing a card, we can't assume the presence to mean that the > >> > access to card is OK. That is because the cause of removal may be a > >> > link down event, and the card may still be physically present. Thus, > >> > instead of presence, use the link state to decide whether or not it is > >> > OK to access the card devices. > >> > > >> > Here are the problem symptoms: > >> > During the removal of a card due to link down, sometimes the following > >> > error is seen (because pciehp_unconfigure_device() reads 0xFF from > >> > bridge control register as the link is down, which cause it to assume > >> > that the VGA bit is set): > >> > > >> > pciehp 0000:21:05.0:pcie24: pcie_isr: intr_loc 100 > >> > pciehp 0000:21:05.0:pcie24: Data Link Layer State change > >> > pciehp 0000:21:05.0:pcie24: slot(5): Link Down event > >> > pciehp 0000:21:05.0:pcie24: Disabling domain:bus:device=0000:60:00 > >> > pciehp 0000:21:05.0:pcie24: pciehp_unconfigure_device: domain:bus:dev = 0000:60:00 > >> > pciehp 0000:21:05.0:pcie24: Cannot remove display device 0000:60:00.0 > >> > > >> > Ofcourse, when the link comes back up, the device addition fails too: > >> > > >> > pciehp 0000:21:05.0:pcie24: pcie_isr: intr_loc 100 > >> > pciehp 0000:21:05.0:pcie24: Data Link Layer State change > >> > pciehp 0000:21:05.0:pcie24: pciehp_check_link_active: lnk_status = 6011 > >> > pciehp 0000:21:05.0:pcie24: slot(5): Link Up event > >> > pciehp 0000:21:05.0:pcie24: Enabling domain:bus:device=0000:60:00 > >> > pciehp 0000:21:05.0:pcie24: pciehp_check_link_active: lnk_status = 6011 > >> > pciehp 0000:21:05.0:pcie24: pciehp_check_link_status: lnk_status = 6011 > >> > pciehp 0000:21:05.0:pcie24: Device 0000:60:00.0 already exists at 0000:60:00, cannot hot-add > >> > pciehp 0000:21:05.0:pcie24: Cannot add device at 0000:60:00 > >> > > >> > The problem is not seen with this patch applied. The device removal and > >> > insertion works as expected. > >> > > >> > Signed-off-by: Rajat Jain > >> > Signed-off-by: Rajat Jain > >> > Signed-off-by: Guenter Roeck > >> > --- > >> > v2: Use the already initialized "ctrl" instead of "p_slot->ctrl" > >> > > >> > drivers/pci/hotplug/pciehp_pci.c | 8 ++++---- > >> > 1 file changed, 4 insertions(+), 4 deletions(-) > >> > > >> > diff --git a/drivers/pci/hotplug/pciehp_pci.c b/drivers/pci/hotplug/pciehp_pci.c > >> > index 9e69403..911f85b 100644 > >> > --- a/drivers/pci/hotplug/pciehp_pci.c > >> > +++ b/drivers/pci/hotplug/pciehp_pci.c > >> > @@ -77,7 +77,7 @@ int pciehp_unconfigure_device(struct slot *p_slot) > >> > { > >> > int rc = 0; > >> > u8 bctl = 0; > >> > - u8 presence = 0; > >> > + bool link_active = false; > >> > struct pci_dev *dev, *temp; > >> > struct pci_bus *parent = p_slot->ctrl->pcie->port->subordinate; > >> > u16 command; > >> > @@ -85,7 +85,7 @@ int pciehp_unconfigure_device(struct slot *p_slot) > >> > > >> > ctrl_dbg(ctrl, "%s: domain:bus:dev = %04x:%02x:00\n", > >> > __func__, pci_domain_nr(parent), parent->number); > >> > - pciehp_get_adapter_status(p_slot, &presence); > >> > + link_active = pciehp_check_link_active(ctrl); > >> > > >> > pci_lock_rescan_remove(); > >> > > >> > @@ -98,7 +98,7 @@ int pciehp_unconfigure_device(struct slot *p_slot) > >> > list_for_each_entry_safe_reverse(dev, temp, &parent->devices, > >> > bus_list) { > >> > pci_dev_get(dev); > >> > - if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE && presence) { > >> > + if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE && link_active) { > >> > pci_read_config_byte(dev, PCI_BRIDGE_CONTROL, &bctl); > >> > if (bctl & PCI_BRIDGE_CTL_VGA) { > >> > ctrl_err(ctrl, > >> > >> Why do we even have this code to check for VGA devices? I looked (briefly) > >> and couldn't find anything in the spec that prohibits removal of VGA > >> devices. > >> > > For my part I don't know. I only know that I had to integrate the patch into > > our images since I hit the problem repeatedly. Usually I wait with integrating > > Rajat's patches until you accept them, but this one was too disruptive. > > > > I would argue that while the patch may not be perfect, at least it improves > > the situation substantially. > > I don't think removing the VGA checks is the way to fix the problem > you're seeing. But I do want to investigate this code since we're in > the area. > I agree. Removing the VGA check would attempt to fix something that isn't known to be broken, and might have undesirable side effects. > >> If we do need it (and it looks like most or all hotplug drivers copied it), > >> isn't there still a race? Can't we have the following sequence? > >> > >> - pciehp_check_link_active() # returns true > >> - Link goes down > >> - pci_read_config_byte() # fails because link is down > >> > > I would guess so. Question is how to address it. Read the configuration byte > > first, then check if the link is down ? Check if link is still up after reading > > the configuration byte ? Add a note that there may be a potential race condition > > and do nothing until it is actually seen ? > > I think we should just read PCI_BRIDGE_CONTROL and look for a 0xff > value. That's not a legal value for the register, so if we see it, it > should be pretty safe to assume the link is down or the device is not > present at all. > Something like if (bctl != 0xff && (bctl & PCI_BRIDGE_CTL_VGA)) { in addition to Rajat's changes ? I think it would be good to keep the change Rajat proposed, ie to check the link state instead of presence. Question then is if you'd want a new revision of Rajat's patch or another patch on top of it with the bctl related change. Thanks, Guenter -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/