netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] atl1e: fix error return code in atl1e_probe()
@ 2020-11-17  2:57 Zhang Changzhong
  2020-11-17 20:38 ` Marion & Christophe JAILLET
  2020-11-18 19:10 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 4+ messages in thread
From: Zhang Changzhong @ 2020-11-17  2:57 UTC (permalink / raw)
  To: jcliburn, chris.snook, davem, kuba, christophe.jaillet, mst,
	leon, hkallweit1, tglx, jesse.brandeburg
  Cc: netdev, linux-kernel

Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Fixes: 85eb5bc33717 ("net: atheros: switch from 'pci_' to 'dma_' API")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
---
 drivers/net/ethernet/atheros/atl1e/atl1e_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/atheros/atl1e/atl1e_main.c b/drivers/net/ethernet/atheros/atl1e/atl1e_main.c
index 098b032..ff9f96d 100644
--- a/drivers/net/ethernet/atheros/atl1e/atl1e_main.c
+++ b/drivers/net/ethernet/atheros/atl1e/atl1e_main.c
@@ -2312,8 +2312,8 @@ static int atl1e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
 	 * various kernel subsystems to support the mechanics required by a
 	 * fixed-high-32-bit system.
 	 */
-	if ((dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)) != 0) ||
-	    (dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32)) != 0)) {
+	err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
+	if (err) {
 		dev_err(&pdev->dev, "No usable DMA configuration,aborting\n");
 		goto err_dma;
 	}
-- 
2.9.5


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

* Re: [PATCH net] atl1e: fix error return code in atl1e_probe()
  2020-11-17  2:57 [PATCH net] atl1e: fix error return code in atl1e_probe() Zhang Changzhong
@ 2020-11-17 20:38 ` Marion & Christophe JAILLET
  2020-11-18  3:25   ` Zhang Changzhong
  2020-11-18 19:10 ` patchwork-bot+netdevbpf
  1 sibling, 1 reply; 4+ messages in thread
From: Marion & Christophe JAILLET @ 2020-11-17 20:38 UTC (permalink / raw)
  To: Zhang Changzhong, jcliburn, chris.snook, davem, kuba, mst, leon,
	hkallweit1, tglx, jesse.brandeburg
  Cc: netdev, linux-kernel


Le 17/11/2020 à 03:57, Zhang Changzhong a écrit :
> Fix to return a negative error code from the error handling
> case instead of 0, as done elsewhere in this function.
>
> Fixes: 85eb5bc33717 ("net: atheros: switch from 'pci_' to 'dma_' API")
Hi, should it have any importance, the Fixes tag is wrong.

The issue was already there before 85eb5bc33717 which was just a 
mechanical update.

just my 2c

CJ

> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
> ---
>   drivers/net/ethernet/atheros/atl1e/atl1e_main.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/atheros/atl1e/atl1e_main.c b/drivers/net/ethernet/atheros/atl1e/atl1e_main.c
> index 098b032..ff9f96d 100644
> --- a/drivers/net/ethernet/atheros/atl1e/atl1e_main.c
> +++ b/drivers/net/ethernet/atheros/atl1e/atl1e_main.c
> @@ -2312,8 +2312,8 @@ static int atl1e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
>   	 * various kernel subsystems to support the mechanics required by a
>   	 * fixed-high-32-bit system.
>   	 */
> -	if ((dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)) != 0) ||
> -	    (dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32)) != 0)) {
> +	err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
> +	if (err) {
>   		dev_err(&pdev->dev, "No usable DMA configuration,aborting\n");
>   		goto err_dma;
>   	}

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

* Re: [PATCH net] atl1e: fix error return code in atl1e_probe()
  2020-11-17 20:38 ` Marion & Christophe JAILLET
@ 2020-11-18  3:25   ` Zhang Changzhong
  0 siblings, 0 replies; 4+ messages in thread
From: Zhang Changzhong @ 2020-11-18  3:25 UTC (permalink / raw)
  To: Marion & Christophe JAILLET, jcliburn, chris.snook, davem,
	kuba, mst, leon, hkallweit1, tglx, jesse.brandeburg
  Cc: netdev, linux-kernel



On 2020/11/18 4:38, Marion & Christophe JAILLET wrote:
> 
> Le 17/11/2020 à 03:57, Zhang Changzhong a écrit :
>> Fix to return a negative error code from the error handling
>> case instead of 0, as done elsewhere in this function.
>>
>> Fixes: 85eb5bc33717 ("net: atheros: switch from 'pci_' to 'dma_' API")
> Hi, should it have any importance, the Fixes tag is wrong.
> 
> The issue was already there before 85eb5bc33717 which was just a mechanical update.
> 
> just my 2c
> 
> CJ
> 
Thanks for reminding, the correct Fixes tag should be:

Fixes: a6a5325239c2 ("atl1e: Atheros L1E Gigabit Ethernet driver"

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

* Re: [PATCH net] atl1e: fix error return code in atl1e_probe()
  2020-11-17  2:57 [PATCH net] atl1e: fix error return code in atl1e_probe() Zhang Changzhong
  2020-11-17 20:38 ` Marion & Christophe JAILLET
@ 2020-11-18 19:10 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2020-11-18 19:10 UTC (permalink / raw)
  To: Zhang Changzhong
  Cc: jcliburn, chris.snook, davem, kuba, christophe.jaillet, mst,
	leon, hkallweit1, tglx, jesse.brandeburg, netdev, linux-kernel

Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Tue, 17 Nov 2020 10:57:55 +0800 you wrote:
> Fix to return a negative error code from the error handling
> case instead of 0, as done elsewhere in this function.
> 
> Fixes: 85eb5bc33717 ("net: atheros: switch from 'pci_' to 'dma_' API")
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
> 
> [...]

Here is the summary with links:
  - [net] atl1e: fix error return code in atl1e_probe()
    https://git.kernel.org/netdev/net/c/3a36060bf294

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2020-11-18 19:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-17  2:57 [PATCH net] atl1e: fix error return code in atl1e_probe() Zhang Changzhong
2020-11-17 20:38 ` Marion & Christophe JAILLET
2020-11-18  3:25   ` Zhang Changzhong
2020-11-18 19:10 ` patchwork-bot+netdevbpf

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).