Skip to content

Commit

Permalink
Corrected the way to transmit multicast packets.
Browse files Browse the repository at this point in the history
For WDS station on 8964.

Signed-off-by: David Lin <dlin@marvell.com>
  • Loading branch information
yuhhaurlin committed Jan 18, 2018
1 parent 0939517 commit 91709d6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions hif/pcie/tx_ndp.c
Expand Up @@ -627,6 +627,13 @@ void pcie_tx_xmit_ndp(struct ieee80211_hw *hw,
if (is_multicast_ether_addr(ieee80211_get_DA(wh))
&& (mwl_vif->macid != SYSADPT_NUM_OF_AP)) {
tx_que_priority = mwl_vif->macid * SYSADPT_MAX_TID;

if (ieee80211_has_a4(wh->frame_control)) {
if (sta && sta_info->wds)
tx_que_priority = SYSADPT_MAX_TID *
(sta_info->stnid +
QUEUE_STAOFFSET) + 6;
}
} else {
if (sta) {
if (!eapol_frame)
Expand Down

0 comments on commit 91709d6

Please sign in to comment.