diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2026-06-10 11:55:21 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2026-06-14 22:31:37 +0000 |
| commit | f54e9d1b299d73081b33ad3f60471dbb1b243cb3 (patch) | |
| tree | cab175ebfaccd5a8530d4d1045650d5108212126 | |
| parent | 0cb3b9229876a2a83d217779cf5ecd09eb153fc3 (diff) | |
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
| -rw-r--r-- | sys/compat/linuxkpi/common/src/linux_80211.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/compat/linuxkpi/common/src/linux_80211.c b/sys/compat/linuxkpi/common/src/linux_80211.c index 280c8dbe176c..b9ac7056f868 100644 --- a/sys/compat/linuxkpi/common/src/linux_80211.c +++ b/sys/compat/linuxkpi/common/src/linux_80211.c @@ -5850,6 +5850,10 @@ lkpi_80211_txq_tx_one(struct lkpi_sta *lsta, struct mbuf *m) } 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) { struct ieee80211_tx_ampdu *tap; |
