diff options
author | Johannes Berg <johannes.berg@intel.com> | 2010-06-01 04:19:19 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-06-03 14:10:46 -0400 |
commit | ad0e2b5a00dbec303e4682b403bb6703d11dcdb2 (patch) | |
tree | b7aeb06a284af0cfb4aa1de840592478b373f554 /net/mac80211/main.c | |
parent | efe4c457a1d4e56840c42bf2e409dc04e8ad4304 (diff) |
mac80211: simplify key locking
Since I recently made station management able
to sleep, I can now rework key management as
well; since it will no longer need a spinlock
and can also use a mutex instead, a bunch of
code to allow drivers' set_key to sleep while
key management is protected by a spinlock can
now be removed.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/main.c')
-rw-r--r-- | net/mac80211/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c index 4051b232c6e6..045ead9507aa 100644 --- a/net/mac80211/main.c +++ b/net/mac80211/main.c | |||
@@ -448,7 +448,7 @@ struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len, | |||
448 | mutex_init(&local->iflist_mtx); | 448 | mutex_init(&local->iflist_mtx); |
449 | mutex_init(&local->scan_mtx); | 449 | mutex_init(&local->scan_mtx); |
450 | 450 | ||
451 | spin_lock_init(&local->key_lock); | 451 | mutex_init(&local->key_mtx); |
452 | spin_lock_init(&local->filter_lock); | 452 | spin_lock_init(&local->filter_lock); |
453 | spin_lock_init(&local->queue_stop_reason_lock); | 453 | spin_lock_init(&local->queue_stop_reason_lock); |
454 | 454 | ||