diff options
author | Shaul Triebitz <shaul.triebitz@intel.com> | 2018-12-15 10:03:15 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2018-12-18 14:19:10 +0100 |
commit | 2e249fc320862e3f75fd255a21554d6de90fb55a (patch) | |
tree | 17f3887ac4bf50a182e4550e7baf5508dc3545e2 /net/mac80211/util.c | |
parent | mac80211: update HE operation fields to D3.0 (diff) | |
download | linux-2e249fc320862e3f75fd255a21554d6de90fb55a.tar.xz linux-2e249fc320862e3f75fd255a21554d6de90fb55a.zip |
mac80211: update driver when MU EDCA params change
Similar to WMM IE, if MU_EDCA IE parameters changed (or ceased to exist)
tell the Driver about it.
Signed-off-by: Shaul Triebitz <shaul.triebitz@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/util.c')
-rw-r--r-- | net/mac80211/util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/util.c b/net/mac80211/util.c index dddfff7cf44f..d0eb38b890aa 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c @@ -1223,6 +1223,8 @@ u32 ieee802_11_parse_elems_crc(const u8 *start, size_t len, bool action, if (pos[0] == WLAN_EID_EXT_HE_MU_EDCA && elen >= (sizeof(*elems->mu_edca_param_set) + 1)) { elems->mu_edca_param_set = (void *)&pos[1]; + if (calc_crc) + crc = crc32_be(crc, pos - 2, elen + 2); } else if (pos[0] == WLAN_EID_EXT_HE_CAPABILITY) { elems->he_cap = (void *)&pos[1]; elems->he_cap_len = elen - 1; |