diff options
author | John W. Linville <linville@tuxdriver.com> | 2011-11-17 13:11:43 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-11-17 13:11:43 -0500 |
commit | e11c259f745889b55bc5596ca78271f2f5cf08d2 (patch) | |
tree | 5025f0bf9093e84d0643beb9097249c176dbbea7 /net/mac80211/key.c | |
parent | 8d26784cf0d04c1238e906efdd5de76439cb0a1e (diff) | |
parent | b4487c2d0edaf1332d7a9f11b5661044955ef5e2 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next into for-davem
Conflicts:
include/net/bluetooth/bluetooth.h
Diffstat (limited to 'net/mac80211/key.c')
-rw-r--r-- | net/mac80211/key.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/net/mac80211/key.c b/net/mac80211/key.c index fb02ea52d2c2..87a89741432d 100644 --- a/net/mac80211/key.c +++ b/net/mac80211/key.c | |||
@@ -134,9 +134,13 @@ static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key) | |||
134 | key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE; | 134 | key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE; |
135 | 135 | ||
136 | if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) || | 136 | if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) || |
137 | (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV))) | 137 | (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) || |
138 | (key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE))) | ||
138 | sdata->crypto_tx_tailroom_needed_cnt--; | 139 | sdata->crypto_tx_tailroom_needed_cnt--; |
139 | 140 | ||
141 | WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) && | ||
142 | (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)); | ||
143 | |||
140 | return 0; | 144 | return 0; |
141 | } | 145 | } |
142 | 146 | ||
@@ -179,7 +183,8 @@ static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key) | |||
179 | sdata = key->sdata; | 183 | sdata = key->sdata; |
180 | 184 | ||
181 | if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) || | 185 | if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) || |
182 | (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV))) | 186 | (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) || |
187 | (key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE))) | ||
183 | increment_tailroom_need_count(sdata); | 188 | increment_tailroom_need_count(sdata); |
184 | 189 | ||
185 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) | 190 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |