rt2x00: Use TXOP_HTTXOP for beacons
Use TXOP_HTTXOP for beacons to stay in sync with the legacy drivers. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> Acked-by: Gertjan van Wingerde <gwingerde@gmail.com> Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
961636ba17
commit
8da3efbb4a
@@ -92,14 +92,15 @@ void rt2x00ht_create_tx_descriptor(struct queue_entry *entry,
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Determine IFS values
|
* Determine IFS values
|
||||||
* - Use TXOP_BACKOFF for management frames
|
* - Use TXOP_BACKOFF for management frames except beacons
|
||||||
* - Use TXOP_SIFS for fragment bursts
|
* - Use TXOP_SIFS for fragment bursts
|
||||||
* - Use TXOP_HTTXOP for everything else
|
* - Use TXOP_HTTXOP for everything else
|
||||||
*
|
*
|
||||||
* Note: rt2800 devices won't use CTS protection (if used)
|
* Note: rt2800 devices won't use CTS protection (if used)
|
||||||
* for frames not transmitted with TXOP_HTTXOP
|
* for frames not transmitted with TXOP_HTTXOP
|
||||||
*/
|
*/
|
||||||
if (ieee80211_is_mgmt(hdr->frame_control))
|
if (ieee80211_is_mgmt(hdr->frame_control) &&
|
||||||
|
!ieee80211_is_beacon(hdr->frame_control))
|
||||||
txdesc->u.ht.txop = TXOP_BACKOFF;
|
txdesc->u.ht.txop = TXOP_BACKOFF;
|
||||||
else if (!(tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT))
|
else if (!(tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT))
|
||||||
txdesc->u.ht.txop = TXOP_SIFS;
|
txdesc->u.ht.txop = TXOP_SIFS;
|
||||||
|
Reference in New Issue
Block a user