linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] PCI,pciehp: Don't set slot off when found device already exists.
@ 2014-01-13  8:02 Yijing Wang
  2014-01-29 22:38 ` Bjorn Helgaas
  2014-02-12  0:41 ` Bjorn Helgaas
  0 siblings, 2 replies; 4+ messages in thread
From: Yijing Wang @ 2014-01-13  8:02 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: linux-pci, Yijing Wang, Hanjun Guo

If we found device already exists during hot add device, we should
leave it, not to set slot off.

Signed-off-by: Yijing Wang <wangyijing@huawei.com>
---
 drivers/pci/hotplug/pciehp_ctrl.c |    3 ++-
 drivers/pci/hotplug/pciehp_pci.c  |    2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c
index 38f0186..f27b0ff 100644
--- a/drivers/pci/hotplug/pciehp_ctrl.c
+++ b/drivers/pci/hotplug/pciehp_ctrl.c
@@ -224,7 +224,8 @@ static int board_added(struct slot *p_slot)
 	if (retval) {
 		ctrl_err(ctrl, "Cannot add device at %04x:%02x:00\n",
 			 pci_domain_nr(parent), parent->number);
-		goto err_exit;
+		if (retval != -EEXIST)
+			goto err_exit;
 	}
 
 	if (PWR_LED(ctrl))
diff --git a/drivers/pci/hotplug/pciehp_pci.c b/drivers/pci/hotplug/pciehp_pci.c
index aac7a40..9b87b49 100644
--- a/drivers/pci/hotplug/pciehp_pci.c
+++ b/drivers/pci/hotplug/pciehp_pci.c
@@ -48,7 +48,7 @@ int pciehp_configure_device(struct slot *p_slot)
 			 "at %04x:%02x:00, cannot hot-add\n", pci_name(dev),
 			 pci_domain_nr(parent), parent->number);
 		pci_dev_put(dev);
-		return -EINVAL;
+		return -EEXIST;
 	}
 
 	num = pci_scan_slot(parent, PCI_DEVFN(0, 0));
-- 
1.7.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] PCI,pciehp: Don't set slot off when found device already exists.
  2014-01-13  8:02 [PATCH] PCI,pciehp: Don't set slot off when found device already exists Yijing Wang
@ 2014-01-29 22:38 ` Bjorn Helgaas
  2014-02-08  1:50   ` Yijing Wang
  2014-02-12  0:41 ` Bjorn Helgaas
  1 sibling, 1 reply; 4+ messages in thread
From: Bjorn Helgaas @ 2014-01-29 22:38 UTC (permalink / raw)
  To: Yijing Wang; +Cc: linux-pci, Hanjun Guo

On Mon, Jan 13, 2014 at 04:02:48PM +0800, Yijing Wang wrote:
> If we found device already exists during hot add device, we should
> leave it, not to set slot off.

Does this fix a defect?  What's the scenario where this fixes a problem
in the current code?  I think this change makes sense, but I'd like to
have a better description of the problem that we're fixing.

I see the following path that looks like it might be a problem with the
current code if slot power is off when we resume after a suspend:

    pciehp_resume
      pciehp_enable_slot
        board_added
          pciehp_configure_device

Is this the scenario you're addressing?

> Signed-off-by: Yijing Wang <wangyijing@huawei.com>
> ---
>  drivers/pci/hotplug/pciehp_ctrl.c |    3 ++-
>  drivers/pci/hotplug/pciehp_pci.c  |    2 +-
>  2 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c
> index 38f0186..f27b0ff 100644
> --- a/drivers/pci/hotplug/pciehp_ctrl.c
> +++ b/drivers/pci/hotplug/pciehp_ctrl.c
> @@ -224,7 +224,8 @@ static int board_added(struct slot *p_slot)
>  	if (retval) {
>  		ctrl_err(ctrl, "Cannot add device at %04x:%02x:00\n",
>  			 pci_domain_nr(parent), parent->number);
> -		goto err_exit;
> +		if (retval != -EEXIST)
> +			goto err_exit;
>  	}
>  
>  	if (PWR_LED(ctrl))
> diff --git a/drivers/pci/hotplug/pciehp_pci.c b/drivers/pci/hotplug/pciehp_pci.c
> index aac7a40..9b87b49 100644
> --- a/drivers/pci/hotplug/pciehp_pci.c
> +++ b/drivers/pci/hotplug/pciehp_pci.c
> @@ -48,7 +48,7 @@ int pciehp_configure_device(struct slot *p_slot)
>  			 "at %04x:%02x:00, cannot hot-add\n", pci_name(dev),
>  			 pci_domain_nr(parent), parent->number);
>  		pci_dev_put(dev);
> -		return -EINVAL;
> +		return -EEXIST;
>  	}
>  
>  	num = pci_scan_slot(parent, PCI_DEVFN(0, 0));
> -- 
> 1.7.1
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pci" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] PCI,pciehp: Don't set slot off when found device already exists.
  2014-01-29 22:38 ` Bjorn Helgaas
@ 2014-02-08  1:50   ` Yijing Wang
  0 siblings, 0 replies; 4+ messages in thread
From: Yijing Wang @ 2014-02-08  1:50 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: linux-pci, Hanjun Guo

On 2014/1/30 6:38, Bjorn Helgaas wrote:
> On Mon, Jan 13, 2014 at 04:02:48PM +0800, Yijing Wang wrote:
>> If we found device already exists during hot add device, we should
>> leave it, not to set slot off.
> 
> Does this fix a defect?  What's the scenario where this fixes a problem
> in the current code?  I think this change makes sense, but I'd like to
> have a better description of the problem that we're fixing.
> 
> I see the following path that looks like it might be a problem with the
> current code if slot power is off when we resume after a suspend:
> 
>     pciehp_resume
>       pciehp_enable_slot
>         board_added
>           pciehp_configure_device
> 
> Is this the scenario you're addressing?

Yes, it is.

I found this case by reviewing the code. But I have no platform
supports pciehp resume. So I can not test it in real.

Thanks!
Yijing.

> 
>> Signed-off-by: Yijing Wang <wangyijing@huawei.com>
>> ---
>>  drivers/pci/hotplug/pciehp_ctrl.c |    3 ++-
>>  drivers/pci/hotplug/pciehp_pci.c  |    2 +-
>>  2 files changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c
>> index 38f0186..f27b0ff 100644
>> --- a/drivers/pci/hotplug/pciehp_ctrl.c
>> +++ b/drivers/pci/hotplug/pciehp_ctrl.c
>> @@ -224,7 +224,8 @@ static int board_added(struct slot *p_slot)
>>  	if (retval) {
>>  		ctrl_err(ctrl, "Cannot add device at %04x:%02x:00\n",
>>  			 pci_domain_nr(parent), parent->number);
>> -		goto err_exit;
>> +		if (retval != -EEXIST)
>> +			goto err_exit;
>>  	}
>>  
>>  	if (PWR_LED(ctrl))
>> diff --git a/drivers/pci/hotplug/pciehp_pci.c b/drivers/pci/hotplug/pciehp_pci.c
>> index aac7a40..9b87b49 100644
>> --- a/drivers/pci/hotplug/pciehp_pci.c
>> +++ b/drivers/pci/hotplug/pciehp_pci.c
>> @@ -48,7 +48,7 @@ int pciehp_configure_device(struct slot *p_slot)
>>  			 "at %04x:%02x:00, cannot hot-add\n", pci_name(dev),
>>  			 pci_domain_nr(parent), parent->number);
>>  		pci_dev_put(dev);
>> -		return -EINVAL;
>> +		return -EEXIST;
>>  	}
>>  
>>  	num = pci_scan_slot(parent, PCI_DEVFN(0, 0));
>> -- 
>> 1.7.1
>>
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-pci" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 


-- 
Thanks!
Yijing


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] PCI,pciehp: Don't set slot off when found device already exists.
  2014-01-13  8:02 [PATCH] PCI,pciehp: Don't set slot off when found device already exists Yijing Wang
  2014-01-29 22:38 ` Bjorn Helgaas
@ 2014-02-12  0:41 ` Bjorn Helgaas
  1 sibling, 0 replies; 4+ messages in thread
From: Bjorn Helgaas @ 2014-02-12  0:41 UTC (permalink / raw)
  To: Yijing Wang; +Cc: linux-pci, Hanjun Guo

On Mon, Jan 13, 2014 at 04:02:48PM +0800, Yijing Wang wrote:
> If we found device already exists during hot add device, we should
> leave it, not to set slot off.
> 
> Signed-off-by: Yijing Wang <wangyijing@huawei.com>

Applied to pci/pciehp for v3.15, thanks!

Bjorn

> ---
>  drivers/pci/hotplug/pciehp_ctrl.c |    3 ++-
>  drivers/pci/hotplug/pciehp_pci.c  |    2 +-
>  2 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c
> index 38f0186..f27b0ff 100644
> --- a/drivers/pci/hotplug/pciehp_ctrl.c
> +++ b/drivers/pci/hotplug/pciehp_ctrl.c
> @@ -224,7 +224,8 @@ static int board_added(struct slot *p_slot)
>  	if (retval) {
>  		ctrl_err(ctrl, "Cannot add device at %04x:%02x:00\n",
>  			 pci_domain_nr(parent), parent->number);
> -		goto err_exit;
> +		if (retval != -EEXIST)
> +			goto err_exit;
>  	}
>  
>  	if (PWR_LED(ctrl))
> diff --git a/drivers/pci/hotplug/pciehp_pci.c b/drivers/pci/hotplug/pciehp_pci.c
> index aac7a40..9b87b49 100644
> --- a/drivers/pci/hotplug/pciehp_pci.c
> +++ b/drivers/pci/hotplug/pciehp_pci.c
> @@ -48,7 +48,7 @@ int pciehp_configure_device(struct slot *p_slot)
>  			 "at %04x:%02x:00, cannot hot-add\n", pci_name(dev),
>  			 pci_domain_nr(parent), parent->number);
>  		pci_dev_put(dev);
> -		return -EINVAL;
> +		return -EEXIST;
>  	}
>  
>  	num = pci_scan_slot(parent, PCI_DEVFN(0, 0));
> -- 
> 1.7.1
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pci" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-02-12  0:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-13  8:02 [PATCH] PCI,pciehp: Don't set slot off when found device already exists Yijing Wang
2014-01-29 22:38 ` Bjorn Helgaas
2014-02-08  1:50   ` Yijing Wang
2014-02-12  0:41 ` Bjorn Helgaas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).