Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1571172 > unrolled thread

Re: [PATCH V3 net-next 02/14] net/ena: fix error handling when probe fails

Started byNetanel Belgazal <netanel@annapurnalabs.com>
First post2017-01-31 23:20 +0100
Last post2017-01-31 23:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH V3 net-next 02/14] net/ena: fix error handling when probe  fails Netanel Belgazal <netanel@annapurnalabs.com> - 2017-01-31 23:20 +0100

#1571172 — Re: [PATCH V3 net-next 02/14] net/ena: fix error handling when probe fails

FromNetanel Belgazal <netanel@annapurnalabs.com>
Date2017-01-31 23:20 +0100
SubjectRe: [PATCH V3 net-next 02/14] net/ena: fix error handling when probe fails
Message-ID<t5OWl-6cJ-13@gated-at.bofh.it>
Hi,

You are right. I'll remove this patch.

Regards,

Netanel

On 01/28/2017 01:33 AM, Lino Sanfilippo wrote:
> Hi,
>
> On 26.01.2017 23:18, Netanel Belgazal wrote:
>> When driver fails in probe, it will release all resources,
>> including adapter.
>> In case of probe failure, ena_remove should not try to
>> free the adapter resources.
>>
>> Signed-off-by: Netanel Belgazal <netanel@annapurnalabs.com>
>> ---
>>  drivers/net/ethernet/amazon/ena/ena_netdev.c | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/net/ethernet/amazon/ena/ena_netdev.c 
>> b/drivers/net/ethernet/amazon/ena/ena_netdev.c
>> index 7493ea3..cb60567 100644
>> --- a/drivers/net/ethernet/amazon/ena/ena_netdev.c
>> +++ b/drivers/net/ethernet/amazon/ena/ena_netdev.c
>> @@ -3046,6 +3046,7 @@ static int ena_probe(struct pci_dev *pdev, 
>> const struct pci_device_id *ent)
>>  err_free_region:
>>      ena_release_bars(ena_dev, pdev);
>>  err_free_ena_dev:
>> +    pci_set_drvdata(pdev, NULL);
>>      vfree(ena_dev);
>>  err_disable_device:
>>      pci_disable_device(pdev);
>>
>
> Is this change really a "fix"? remove() should only be called if
> probe() has been successful before, otherwise not. Did you experience
> something different?
>
> Regards,
> Lino

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web