Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Sep 2022 16:32:57 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: d6d687daaa45 - main - LinuxKPI: 80211: add ieee80211_stop_tx_ba_session()
Message-ID:  <202209091632.289GWvmn094497@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)
 {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202209091632.289GWvmn094497>