diff options
author | Johannes Berg <johannes.berg@intel.com> | 2013-06-24 15:43:38 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-07-16 09:55:55 +0300 |
commit | f77b86d7d3acf9dfcb5ee834628d12207584b2cb (patch) | |
tree | 9f1c168aee8a599798fb3f6560da8f44b54416d4 | |
parent | 923a0e7dee8c436108279568cf34444749ac796f (diff) | |
download | op-kernel-dev-f77b86d7d3acf9dfcb5ee834628d12207584b2cb.zip op-kernel-dev-f77b86d7d3acf9dfcb5ee834628d12207584b2cb.tar.gz |
regulatory: add missing rtnl locking
restore_regulatory_settings() requires the RTNL to be held,
add the missing locking in reg_timeout_work().
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
-rw-r--r-- | net/wireless/reg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/wireless/reg.c b/net/wireless/reg.c index 5a24c98..5a950f3 100644 --- a/net/wireless/reg.c +++ b/net/wireless/reg.c @@ -2279,7 +2279,9 @@ void wiphy_regulatory_deregister(struct wiphy *wiphy) static void reg_timeout_work(struct work_struct *work) { REG_DBG_PRINT("Timeout while waiting for CRDA to reply, restoring regulatory settings\n"); + rtnl_lock(); restore_regulatory_settings(true); + rtnl_unlock(); } int __init regulatory_init(void) |