Re: [PATCH net] team: Move team device type change at the end of team_port_add

From: Paolo Abeni

Date: Tue Nov 18 2025 - 06:47:03 EST


On 11/12/25 1:34 AM, Nikola Z. Ivanov wrote:
> @@ -1233,6 +1231,10 @@ static int team_port_add(struct team *team, struct net_device *port_dev,
> }
> }
>
> + err = team_dev_type_check_change(dev, port_dev);
> + if (err)
> + goto err_set_dev_type;

Please don't add unneeded new labels, instead reuse the exiting
`err_set_slave_promisc`.

Thanks,

Paolo