mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH master] net: dsa: abort registration when master is unresolvable
@ 2023-03-15 14:35 Ahmad Fatoum
  2023-03-16  8:42 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2023-03-15 14:35 UTC (permalink / raw)
  To: barebox; +Cc: Ahmad Fatoum

ds->edev_master is used in a lot places and if we can't populate,
because the Ethernet device wasn't found, we should abort instead of
crashing later on.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 drivers/net/dsa.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/net/dsa.c b/drivers/net/dsa.c
index 793bbbb4f18f..6a3b829e15a4 100644
--- a/drivers/net/dsa.c
+++ b/drivers/net/dsa.c
@@ -400,8 +400,11 @@ static int dsa_switch_parse_ports_of(struct dsa_switch *ds,
 		}
 
 		master = of_parse_phandle(port, "ethernet", 0);
-		if (master)
-			dsa_switch_register_master(ds, port, master, reg);
+		if (master) {
+			ret = dsa_switch_register_master(ds, port, master, reg);
+			if (ret)
+				return ret;
+		}
 	}
 
 	/* Now we can register regular switch ports  */
-- 
2.30.2




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

* Re: [PATCH master] net: dsa: abort registration when master is unresolvable
  2023-03-15 14:35 [PATCH master] net: dsa: abort registration when master is unresolvable Ahmad Fatoum
@ 2023-03-16  8:42 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2023-03-16  8:42 UTC (permalink / raw)
  To: Ahmad Fatoum; +Cc: barebox

On Wed, Mar 15, 2023 at 03:35:22PM +0100, Ahmad Fatoum wrote:
> ds->edev_master is used in a lot places and if we can't populate,
> because the Ethernet device wasn't found, we should abort instead of
> crashing later on.
> 
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
>  drivers/net/dsa.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)

Applied, thanks

Sascha

> 
> diff --git a/drivers/net/dsa.c b/drivers/net/dsa.c
> index 793bbbb4f18f..6a3b829e15a4 100644
> --- a/drivers/net/dsa.c
> +++ b/drivers/net/dsa.c
> @@ -400,8 +400,11 @@ static int dsa_switch_parse_ports_of(struct dsa_switch *ds,
>  		}
>  
>  		master = of_parse_phandle(port, "ethernet", 0);
> -		if (master)
> -			dsa_switch_register_master(ds, port, master, reg);
> +		if (master) {
> +			ret = dsa_switch_register_master(ds, port, master, reg);
> +			if (ret)
> +				return ret;
> +		}
>  	}
>  
>  	/* Now we can register regular switch ports  */
> -- 
> 2.30.2
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



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

end of thread, other threads:[~2023-03-16  8:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-15 14:35 [PATCH master] net: dsa: abort registration when master is unresolvable Ahmad Fatoum
2023-03-16  8:42 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox