mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00: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
1 changed files with 3 additions and 1 deletions
|
@ -136,8 +136,10 @@ struct net_device *x25_dev_get(char *devname)
|
||||||
#if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
|
#if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
|
||||||
&& dev->type != ARPHRD_ETHER
|
&& dev->type != ARPHRD_ETHER
|
||||||
#endif
|
#endif
|
||||||
)))
|
))){
|
||||||
dev_put(dev);
|
dev_put(dev);
|
||||||
|
dev = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
return dev;
|
return dev;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue