aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/status.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2011-09-29 10:04:31 -0400
committerJohn W. Linville <linville@tuxdriver.com>2011-09-30 15:57:14 -0400
commit8a8656fa5bbbc8568348d95184d374edb03a48b7 (patch)
treea392ea00c6b9bfad4a68f0243cf827dd6047ba41 /net/mac80211/status.c
parentb0b97a8ad5c4640785f9a1c8e979f1c0fba147e1 (diff)
mac80211: clear more-data bit on filtered frames
It doesn't seem likely, but maybe possible, that the more-data bit needs to be recomputed due to changes in the queued frames. Clear it for filtered frames to ensure that we never send it incorrectly. It'll be set again as necessary when we retransmit this frame. The more likely case is maybe where the station woke up after the filtered frame in which case more-data should be clear when the frame is transmitted to the station since it is now awake. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/status.c')
-rw-r--r--net/mac80211/status.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/net/mac80211/status.c b/net/mac80211/status.c
index c06857bbd573..94475eb51d28 100644
--- a/net/mac80211/status.c
+++ b/net/mac80211/status.c
@@ -65,6 +65,16 @@ static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
65 65
66 sta->tx_filtered_count++; 66 sta->tx_filtered_count++;
67 67
68 /*
69 * Clear more-data bit on filtered frames, it might be set
70 * but later frames might time out so it might have to be
71 * clear again ... It's all rather unlikely (this frame
72 * should time out first, right?) but let's not confuse
73 * peers unnecessarily.
74 */
75 if (hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_MOREDATA))
76 hdr->frame_control &= ~cpu_to_le16(IEEE80211_FCTL_MOREDATA);
77
68 if (ieee80211_is_data_qos(hdr->frame_control)) { 78 if (ieee80211_is_data_qos(hdr->frame_control)) {
69 int tid = *ieee80211_get_qos_ctl(hdr) & 79 int tid = *ieee80211_get_qos_ctl(hdr) &
70 IEEE80211_QOS_CTL_TID_MASK; 80 IEEE80211_QOS_CTL_TID_MASK;