git: d6d687daaa45 - main - LinuxKPI: 80211: add ieee80211_stop_tx_ba_session()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 09 Sep 2022 16:32:57 UTC
The branch main has been updated by bz: URL: https://cgit.FreeBSD.org/src/commit/?id=d6d687daaa4531c4a84b82cde46c9906c3c02f55 commit d6d687daaa4531c4a84b82cde46c9906c3c02f55 Author: Bjoern A. Zeeb <bz@FreeBSD.org> AuthorDate: 2022-09-09 16:30:00 +0000 Commit: Bjoern A. Zeeb <bz@FreeBSD.org> CommitDate: 2022-09-09 16:30:00 +0000 LinuxKPI: 80211: add ieee80211_stop_tx_ba_session() rtw89 needs ieee80211_stop_tx_ba_session(). Add the skeleton function for now so we can implement BA functions all together. MFC after: 3 days --- sys/compat/linuxkpi/common/include/net/mac80211.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sys/compat/linuxkpi/common/include/net/mac80211.h b/sys/compat/linuxkpi/common/include/net/mac80211.h index 66fc8c14e905..659101dec689 100644 --- a/sys/compat/linuxkpi/common/include/net/mac80211.h +++ b/sys/compat/linuxkpi/common/include/net/mac80211.h @@ -2041,6 +2041,13 @@ ieee80211_start_tx_ba_session(struct ieee80211_sta *sta, uint8_t tid, int x) return (-EINVAL); } +static __inline int +ieee80211_stop_tx_ba_session(struct ieee80211_sta *sta, uint8_t tid) +{ + TODO(); + return (-EINVAL); +} + static __inline void ieee80211_tx_info_clear_status(struct ieee80211_tx_info *info) {