diff options
author | John W. Linville <linville@tuxdriver.com> | 2014-05-06 14:05:51 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-05-06 14:05:51 -0400 |
commit | cabae81103584a8265114a543555781b7b0c88bd (patch) | |
tree | 0440190f176d6c590f712b78c8d8274b536ced3a /net/mac80211/rx.c | |
parent | 3234f5b06fc3094176a86772cc64baf3decc98fc (diff) | |
parent | e669ba2d06c6195662601956454ac959892f0762 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r-- | net/mac80211/rx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index 216c45b949e..2b608b2b70e 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c @@ -1231,7 +1231,8 @@ ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx) if (ether_addr_equal(bssid, rx->sdata->u.ibss.bssid) && test_sta_flag(sta, WLAN_STA_AUTHORIZED)) { sta->last_rx = jiffies; - if (ieee80211_is_data(hdr->frame_control)) { + if (ieee80211_is_data(hdr->frame_control) && + !is_multicast_ether_addr(hdr->addr1)) { sta->last_rx_rate_idx = status->rate_idx; sta->last_rx_rate_flag = status->flag; sta->last_rx_rate_vht_flag = status->vht_flag; |