hostapd: Don't mask out non-symmetric STA HT caps
Previously hostapd just masked the STAs HT caps with its own. However, some HT caps are not symmetric and as such need to be handled different. hostapd shouldn't overwrite the STAs SMPS mode as otherwise the driver cannot know it has to use RTS/CTS to wake the receiver from dynamic SMPS for MCS rates > 7. hostapd shouldn't mask the RX and TX STBC caps with it's own. They are already handled in a special case below. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
This commit is contained in:
parent
62b98282ba
commit
d4744189b7
1 changed files with 8 additions and 2 deletions
|
@ -250,8 +250,14 @@ void hostapd_get_ht_capab(struct hostapd_data *hapd,
|
|||
return;
|
||||
os_memcpy(neg_ht_cap, ht_cap, sizeof(*neg_ht_cap));
|
||||
cap = le_to_host16(neg_ht_cap->ht_capabilities_info);
|
||||
cap &= hapd->iconf->ht_capab;
|
||||
cap |= (hapd->iconf->ht_capab & HT_CAP_INFO_SMPS_DISABLED);
|
||||
|
||||
/*
|
||||
* Mask out HT features we don't support, but don't overwrite
|
||||
* non-symmetric features like STBC and SMPS. Just because
|
||||
* we're not in dynamic SMPS mode the STA might still be.
|
||||
*/
|
||||
cap &= (hapd->iconf->ht_capab | HT_CAP_INFO_RX_STBC_MASK |
|
||||
HT_CAP_INFO_TX_STBC | HT_CAP_INFO_SMPS_MASK);
|
||||
|
||||
/*
|
||||
* STBC needs to be handled specially
|
||||
|
|
Loading…
Reference in a new issue