All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mac80211: set IEEE80211_TX_CTL_FIRST_FRAGMENT for beacons
@ 2010-05-06 18:45 John W. Linville
  2010-05-06 22:01 ` Luis R. Rodriguez
  0 siblings, 1 reply; 6+ messages in thread
From: John W. Linville @ 2010-05-06 18:45 UTC (permalink / raw)
  To: linux-wireless; +Cc: John W. Linville

Also simplify the flags assignment into a single statement at the
end of ieee80211_beacon_get_tim.

Signed-off-by: John W. Linville <linville@tuxdriver.com>
---
 net/mac80211/tx.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index f3841f4..6bd2492 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -2251,8 +2251,9 @@ struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
 
 	info->control.vif = vif;
 
-	info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
-	info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
+	info->flags |= (IEEE80211_TX_CTL_CLEAR_PS_FILT |
+			IEEE80211_TX_CTL_ASSIGN_SEQ |
+			IEEE80211_TX_CTL_FIRST_FRAGMENT);
  out:
 	rcu_read_unlock();
 	return skb;
-- 
1.6.6.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-05-07 22:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-06 18:45 [PATCH] mac80211: set IEEE80211_TX_CTL_FIRST_FRAGMENT for beacons John W. Linville
2010-05-06 22:01 ` Luis R. Rodriguez
2010-05-07  0:13   ` John W. Linville
2010-05-07  2:35     ` John W. Linville
2010-05-07 21:43       ` Luis R. Rodriguez
2010-05-07 22:04         ` John W. Linville

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.