mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
mac80211: remove bogus rcu_read_lock()
Another remnant of the previous key locking scheme needs to be removed -- this causes a warning otherwise as ieee80211_set_default_mgmt_key will acquire a mutex. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
f9f9b6e3e3
commit
66c524210a
@ -324,15 +324,10 @@ static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
|
|||||||
struct net_device *dev,
|
struct net_device *dev,
|
||||||
u8 key_idx)
|
u8 key_idx)
|
||||||
{
|
{
|
||||||
struct ieee80211_sub_if_data *sdata;
|
struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
||||||
|
|
||||||
rcu_read_lock();
|
|
||||||
|
|
||||||
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
||||||
ieee80211_set_default_mgmt_key(sdata, key_idx);
|
ieee80211_set_default_mgmt_key(sdata, key_idx);
|
||||||
|
|
||||||
rcu_read_unlock();
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user