mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
X25: Fix oops and refcnt problems from x25_dev_get
Calls to x25_dev_get check for dev = NULL which was not set. It allowed x25 to set routes and ioctls on down interfaces. This caused oopses and refcnt problems on device_unregister. Signed-off-by: Andrew Hendry <andrew.hendry@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1fd975a052
commit
429d33ace5
@ -136,8 +136,10 @@ struct net_device *x25_dev_get(char *devname)
|
||||
#if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
|
||||
&& dev->type != ARPHRD_ETHER
|
||||
#endif
|
||||
)))
|
||||
))){
|
||||
dev_put(dev);
|
||||
dev = NULL;
|
||||
}
|
||||
|
||||
return dev;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user