On Sun, Oct 06, 2024 at 08:57:20PM +0300, Ivan Safonov wrote:
register_netdev() does not expands the device name.
Please could you explain what makes you think it will not expand the
device name.
Andrew
int register_netdev(struct net_device *dev)
{
int err;
if (rtnl_lock_killable())
return -EINTR;
err = register_netdevice(dev);
rtnl_unlock();
return err;
}