]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[PATCH] ieee80211: Fix CCMP decryption problem when QoS is enabled
authorZhu Yi <yi.zhu@intel.com>
Tue, 28 Feb 2006 07:10:36 +0000 (15:10 +0800)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 15 Mar 2006 21:11:55 +0000 (16:11 -0500)
Use the correct STYPE for Qos data.

Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/ieee80211/ieee80211_crypt_ccmp.c

index 4702217285032c57dda4ea1b6f1494bd12e64af2..3840d1911f2b2a2e04f0a99f22c8573ed117e429 100644 (file)
@@ -131,7 +131,7 @@ static void ccmp_init_blocks(struct crypto_tfm *tfm,
        a4_included = ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
                       (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS));
        qc_included = ((WLAN_FC_GET_TYPE(fc) == IEEE80211_FTYPE_DATA) &&
-                      (WLAN_FC_GET_STYPE(fc) & 0x08));
+                      (WLAN_FC_GET_STYPE(fc) & IEEE80211_STYPE_QOS_DATA));
        aad_len = 22;
        if (a4_included)
                aad_len += 6;