diff options
author | Ming Lei <tom.leiming@gmail.com> | 2010-02-06 14:38:23 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-02-08 21:50:59 (GMT) |
commit | 733da37dab72de6b3f8b0c56b5cdea322f18a684 (patch) | |
tree | 1d87aa2939b2734f9350dd9a6d99784ab901370d /drivers | |
parent | 29165e4c8b265a415f1fd1dca947b5d4c72abc47 (diff) | |
download | linux-fsl-qoriq-733da37dab72de6b3f8b0c56b5cdea322f18a684.tar.xz |
ath9k: fix keycache leak in split tkip case
If split tkip key is used, ath_delete_key should delete
rx key and rx mic key. This patch fixes the leak of hw
keycache in the case.
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index 40da7a6..9c8f925 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c @@ -809,6 +809,7 @@ static void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf clear_bit(key->hw_key_idx + 64, common->keymap); if (common->splitmic) { + ath9k_hw_keyreset(ah, key->hw_key_idx + 32); clear_bit(key->hw_key_idx + 32, common->keymap); clear_bit(key->hw_key_idx + 64 + 32, common->keymap); } |