Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1298235
| From | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 6/7] drivers: net: cpsw: fix error return code |
| Date | 2015-12-26 18:40 +0100 |
| Message-ID | <qK0YW-3PM-5@gated-at.bofh.it> (permalink) |
| References | <qJZgt-2JU-5@gated-at.bofh.it> <qJZgt-2JU-17@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hello.
On 12/26/2015 6:28 PM, Julia Lawall wrote:
> Return a negative error code on failure.
>
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> identifier ret; expression e1,e2;
> @@
> (
> if (\(ret < 0\|ret != 0\))
> { ... return ret; }
> |
> ret = 0
> )
> ... when != ret = e1
> when != &ret
> *if(...)
> {
> ... when != ret = e2
> when forall
> return ret;
> }
> // </smpl>
>
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
>
> ---
> drivers/net/ethernet/ti/cpsw.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
> index 3409e80..6a76992 100644
> --- a/drivers/net/ethernet/ti/cpsw.c
> +++ b/drivers/net/ethernet/ti/cpsw.c
> @@ -2448,8 +2448,10 @@ static int cpsw_probe(struct platform_device *pdev)
>
> /* RX IRQ */
> irq = platform_get_irq(pdev, 1);
> - if (irq < 0)
> + if (irq < 0) {
> + ret = -ENOENT;
Why not just propagate an error returned by that function?
> goto clean_ale_ret;
> + }
>
> priv->irqs_table[0] = irq;
> ret = devm_request_irq(&pdev->dev, irq, cpsw_rx_interrupt,
> @@ -2461,8 +2463,10 @@ static int cpsw_probe(struct platform_device *pdev)
>
> /* TX IRQ */
> irq = platform_get_irq(pdev, 2);
> - if (irq < 0)
> + if (irq < 0) {
> + ret = -ENOENT;
Likewise?
[...]
MBR, Sergei
--
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/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 0/7] fix error return code Julia Lawall <Julia.Lawall@lip6.fr> - 2015-12-26 16:50 +0100
[PATCH 6/7] drivers: net: cpsw: fix error return code Julia Lawall <Julia.Lawall@lip6.fr> - 2015-12-26 16:50 +0100
Re: [PATCH 6/7] drivers: net: cpsw: fix error return code Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> - 2015-12-26 18:40 +0100
Re: [PATCH 6/7] drivers: net: cpsw: fix error return code Julia Lawall <julia.lawall@lip6.fr> - 2015-12-26 18:50 +0100
Re: [PATCH 6/7] drivers: net: cpsw: fix error return code Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> - 2015-12-26 19:00 +0100
[PATCH 6/7 v2] drivers: net: cpsw: fix error return code Julia Lawall <julia.lawall@lip6.fr> - 2015-12-26 20:20 +0100
Re: [PATCH 6/7] drivers: net: cpsw: fix error return code Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> - 2015-12-26 21:00 +0100
Re: [PATCH 6/7] drivers: net: cpsw: fix error return code Julia Lawall <julia.lawall@lip6.fr> - 2015-12-26 21:10 +0100
Re: [PATCH 6/7] drivers: net: cpsw: fix error return code Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> - 2015-12-26 21:20 +0100
csiph-web