mirror of
https://github.com/chinawrj/rtl8812au
synced 2024-11-27 23:54:24 +00:00
Fix interface rename issue
This commit is contained in:
parent
f4bd60fbcd
commit
703d5772d4
@ -1431,6 +1431,7 @@ static u8 is_rtw_ndev(struct net_device *ndev)
|
|||||||
static int rtw_ndev_notifier_call(struct notifier_block *nb, unsigned long state, void *ptr)
|
static int rtw_ndev_notifier_call(struct notifier_block *nb, unsigned long state, void *ptr)
|
||||||
{
|
{
|
||||||
struct net_device *ndev;
|
struct net_device *ndev;
|
||||||
|
_adapter *adapter = rtw_netdev_priv(ndev);
|
||||||
|
|
||||||
if (ptr == NULL)
|
if (ptr == NULL)
|
||||||
return NOTIFY_DONE;
|
return NOTIFY_DONE;
|
||||||
@ -1452,6 +1453,8 @@ static int rtw_ndev_notifier_call(struct notifier_block *nb, unsigned long state
|
|||||||
switch (state) {
|
switch (state) {
|
||||||
case NETDEV_CHANGENAME:
|
case NETDEV_CHANGENAME:
|
||||||
//rtw_adapter_proc_replace(ndev);
|
//rtw_adapter_proc_replace(ndev);
|
||||||
|
strncpy(adapter->old_ifname, ndev->name, IFNAMSIZ);
|
||||||
|
adapter->old_ifname[IFNAMSIZ-1] = 0;
|
||||||
break;
|
break;
|
||||||
#ifdef CONFIG_NEW_NETDEV_HDL
|
#ifdef CONFIG_NEW_NETDEV_HDL
|
||||||
case NETDEV_PRE_UP :
|
case NETDEV_PRE_UP :
|
||||||
|
Loading…
Reference in New Issue
Block a user