LinuxKPI: 802.11: set undefined link in TX control info

We are not doing MLO yet so set the undefined link bit in the
TX info control message in case a driver checks if the TX would be
link specific.

Sposnored by:	The FreeBSD Foundation
MFC after:	3 days
This commit is contained in:
Bjoern A. Zeeb
2026-06-10 11:55:21 +00:00
parent 0cb3b92298
commit f54e9d1b29
@@ -5850,6 +5850,10 @@ lkpi_80211_txq_tx_one(struct lkpi_sta *lsta, struct mbuf *m)
} }
info->control.vif = vif; info->control.vif = vif;
/* IMPROVE("MLO"); */
info->control.flags |=
u32_encode_bits(IEEE80211_LINK_UNSPECIFIED, IEEE80211_TX_CTRL_MLO_LINK);
if (tid != IEEE80211_NONQOS_TID) { if (tid != IEEE80211_NONQOS_TID) {
struct ieee80211_tx_ampdu *tap; struct ieee80211_tx_ampdu *tap;