mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 08:26:49 +07:00
tun/tap: Add the missed return value check of register_netdevice_notifier
There is some codes of tun/tap module which did not check the return value of register_netdevice_notifier. Add the check now. Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6c7fce6fa8
commit
5edfbd3c06
@ -2598,8 +2598,16 @@ static int __init tun_init(void)
|
||||
goto err_misc;
|
||||
}
|
||||
|
||||
register_netdevice_notifier(&tun_notifier_block);
|
||||
ret = register_netdevice_notifier(&tun_notifier_block);
|
||||
if (ret) {
|
||||
pr_err("Can't register netdevice notifier\n");
|
||||
goto err_notifier;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
err_notifier:
|
||||
misc_deregister(&tun_miscdev);
|
||||
err_misc:
|
||||
rtnl_link_unregister(&tun_link_ops);
|
||||
err_linkops:
|
||||
|
Loading…
Reference in New Issue
Block a user