回复:[PATCH v5 net-next 11/11] net/nebula-matrix: add common dev start/stop operation
From: Illusion Wang
Date: Wed Mar 04 2026 - 02:27:41 EST
> > +int nbl_dev_start(struct nbl_adapter *adapter, struct nbl_init_param *param)
> > +{
> > + int ret;
> > +
> > + ret = nbl_dev_start_common_dev(adapter, param);
> > + return ret;
>return nbl_dev_start_common_dev(adapter, param);
>But then i have to ask, why bother having nbl_dev_start() when you can
>just call nbl_dev_start_common().
You're absolutely right. However, we're considering facilitating future
expansion for the next-stage netdev configuration.
--illusion.wang