From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:47320 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933949AbcLTJg6 (ORCPT ); Tue, 20 Dec 2016 04:36:58 -0500 Date: Tue, 20 Dec 2016 10:37:09 +0100 From: Greg KH To: Gavin Shan Cc: linuxppc-dev@lists.ozlabs.org, stable@vger.kernel.org, #v4.9+@gwshan.ozlabs.ibm.com Subject: Re: [PATCH] drivers/pci/hotplug: Handle presence detection change properly Message-ID: <20161220093709.GA12938@kroah.com> References: <1482216573-21487-1-git-send-email-gwshan@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1482216573-21487-1-git-send-email-gwshan@linux.vnet.ibm.com> Sender: stable-owner@vger.kernel.org List-ID: On Tue, Dec 20, 2016 at 05:49:33PM +1100, Gavin Shan wrote: > The surprise hotplug is driven by interrupt in PowerNV PCI hotplug > driver. In the interrupt handler, pnv_php_interrupt(), we bail when > pnv_pci_get_presence_state() returns zero wrongly. It causes the > presence change event is always ignored incorrectly. > > This fixes the issue by bailing on error (non-zero value) returned > from pnv_pci_get_presence_state(). > > Fixes: 360aebd85a4 ("drivers/pci/hotplug: Support surprise hotplug in powernv driver") > Cc: stable@vger.kernel.org #v4.9+ > Reported-by: Hank Chang > Signed-off-by: Gavin Shan > Tested-by: Willie Liauw > --- > drivers/pci/hotplug/pnv_php.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/drivers/pci/hotplug/pnv_php.c b/drivers/pci/hotplug/pnv_php.c > index 56efaf7..38a2309 100644 > --- a/drivers/pci/hotplug/pnv_php.c > +++ b/drivers/pci/hotplug/pnv_php.c > @@ -707,8 +707,12 @@ static irqreturn_t pnv_php_interrupt(int irq, void *data) > added = !!(lsts & PCI_EXP_LNKSTA_DLLLA); > } else if (sts & PCI_EXP_SLTSTA_PDC) { > ret = pnv_pci_get_presence_state(php_slot->id, &presence); > - if (!ret) > + if (ret) { > + dev_warn(&pdev->dev, "PCI slot [%s] error %d handling PDC event (0x%04x)\n", > + php_slot->name, ret, sts); What can a user do with this warning?