]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
wifi: mac80211: export ieee80211_purge_tx_queue() for drivers
authorPing-Ke Shih <pkshih@realtek.com>
Thu, 22 Aug 2024 01:42:54 +0000 (09:42 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 2 May 2025 05:46:55 +0000 (07:46 +0200)
commit 53bc1b73b67836ac9867f93dee7a443986b4a94f upstream.

Drivers need to purge TX SKB when stopping. Using skb_queue_purge() can't
report TX status to mac80211, causing ieee80211_free_ack_frame() warns
"Have pending ack frames!". Export ieee80211_purge_tx_queue() for drivers
to not have to reimplement it.

Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://patch.msgid.link/20240822014255.10211-1-pkshih@realtek.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/net/mac80211.h
net/mac80211/ieee80211_i.h
net/mac80211/status.c

index a5a5a29157364536a810a5b5a7198951c7ee9e9d..6ef8348b5e9387aee36ff417a03ebee47ebeac22 100644 (file)
@@ -2956,6 +2956,19 @@ ieee80211_get_alt_retry_rate(const struct ieee80211_hw *hw,
  */
 void ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb);
 
+/**
+ * ieee80211_purge_tx_queue - purge TX skb queue
+ * @hw: the hardware
+ * @skbs: the skbs
+ *
+ * Free a set of transmit skbs. Use this function when device is going to stop
+ * but some transmit skbs without TX status are still queued.
+ * This function does not take the list lock and the caller must hold the
+ * relevant locks to use it.
+ */
+void ieee80211_purge_tx_queue(struct ieee80211_hw *hw,
+                             struct sk_buff_head *skbs);
+
 /**
  * DOC: Hardware crypto acceleration
  *
index 8a3af4144d3f05e60b1125f3223511add2362511..4cd413bd764fe4ffbe64d0b08367f1bc1e044345 100644 (file)
@@ -1984,8 +1984,6 @@ void __ieee80211_subif_start_xmit(struct sk_buff *skb,
                                  u32 info_flags,
                                  u32 ctrl_flags,
                                  u64 *cookie);
-void ieee80211_purge_tx_queue(struct ieee80211_hw *hw,
-                             struct sk_buff_head *skbs);
 struct sk_buff *
 ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata,
                              struct sk_buff *skb, u32 info_flags);
index 3f9ddd7f04b6461459f1ebf875aea7a1f809b278..3a96aa306616137ff4cfb484933ed774d13c4597 100644 (file)
@@ -1294,3 +1294,4 @@ void ieee80211_purge_tx_queue(struct ieee80211_hw *hw,
        while ((skb = __skb_dequeue(skbs)))
                ieee80211_free_txskb(hw, skb);
 }
+EXPORT_SYMBOL(ieee80211_purge_tx_queue);