提交 92e44948 编写于 作者: T Teemu Paasikivi 提交者: John W. Linville

nl80211: Fix exit from nl80211_set_power_save

If interface does not existk, when nl80211_set_power_save is called, (eg.
module has been unloaded) it has been causing kernel panic. Added new
goto target to avoid crash if get_rdev_dev_by_info_ifindex does not
return dev and rdev pointers.
Signed-off-by: NTeemu Paasikivi <ext-teemu.3.paasikivi@nokia.com>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 56af3268
...@@ -4990,7 +4990,7 @@ static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info) ...@@ -4990,7 +4990,7 @@ static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
err = get_rdev_dev_by_info_ifindex(info, &rdev, &dev); err = get_rdev_dev_by_info_ifindex(info, &rdev, &dev);
if (err) if (err)
goto unlock_rdev; goto unlock_rtnl;
wdev = dev->ieee80211_ptr; wdev = dev->ieee80211_ptr;
...@@ -5014,6 +5014,7 @@ static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info) ...@@ -5014,6 +5014,7 @@ static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
unlock_rdev: unlock_rdev:
cfg80211_unlock_rdev(rdev); cfg80211_unlock_rdev(rdev);
dev_put(dev); dev_put(dev);
unlock_rtnl:
rtnl_unlock(); rtnl_unlock();
out: out:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册