Skip to content

Commit

Permalink
iwn: send block ack request frames with the firmware node. #906
Browse files Browse the repository at this point in the history
  • Loading branch information
zxystd committed Mar 16, 2024
1 parent fa34242 commit d945ecb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion itlwm/hal_iwn/ItlIwn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3597,7 +3597,10 @@ iwn_tx(struct iwn_softc *sc, mbuf_t m, struct ieee80211_node *ni)
}
}

if (IEEE80211_IS_MULTICAST(wh->i_addr1) ||
if (type == IEEE80211_FC0_TYPE_CTL &&
subtype == IEEE80211_FC0_SUBTYPE_BAR)
tx->id = wn->id;
else if (IEEE80211_IS_MULTICAST(wh->i_addr1) ||
type != IEEE80211_FC0_TYPE_DATA)
tx->id = sc->broadcast_id;
else
Expand Down

0 comments on commit d945ecb

Please sign in to comment.