aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/mac80211/patches/305-ath10k-Clean-up-peer-when-sta-goes-away.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2016-10-08 13:53:14 +0200
committerFelix Fietkau <nbd@nbd.name>2016-10-13 17:06:03 +0200
commitad51e09fd1301484820a466a49447a34d7504882 (patch)
tree06d56b89cf8709b0e9ca63528f8efc411089ddf5 /package/kernel/mac80211/patches/305-ath10k-Clean-up-peer-when-sta-goes-away.patch
parent4379bcb1b4b73fb8487a14bec9554a17d4726e35 (diff)
downloadupstream-ad51e09fd1301484820a466a49447a34d7504882.tar.gz
upstream-ad51e09fd1301484820a466a49447a34d7504882.tar.bz2
upstream-ad51e09fd1301484820a466a49447a34d7504882.zip
mac80211: update to wireless-testing 2016-10-08
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'package/kernel/mac80211/patches/305-ath10k-Clean-up-peer-when-sta-goes-away.patch')
-rw-r--r--package/kernel/mac80211/patches/305-ath10k-Clean-up-peer-when-sta-goes-away.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/package/kernel/mac80211/patches/305-ath10k-Clean-up-peer-when-sta-goes-away.patch b/package/kernel/mac80211/patches/305-ath10k-Clean-up-peer-when-sta-goes-away.patch
deleted file mode 100644
index 7248a8cecf..0000000000
--- a/package/kernel/mac80211/patches/305-ath10k-Clean-up-peer-when-sta-goes-away.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From: Ben Greear <greearb@candelatech.com>
-Date: Fri, 1 Apr 2016 14:12:11 -0700
-Subject: [PATCH] ath10k: Clean up peer when sta goes away.
-
-If WMI and/or firmware has issues removing the peer object,
-then we still need to clean up the peer object in the driver.
-
-Signed-off-by: Ben Greear <greearb@candelatech.com>
----
-
---- a/drivers/net/wireless/ath/ath10k/mac.c
-+++ b/drivers/net/wireless/ath/ath10k/mac.c
-@@ -5992,9 +5992,17 @@ static int ath10k_sta_state(struct ieee8
- continue;
-
- if (peer->sta == sta) {
-- ath10k_warn(ar, "found sta peer %pM entry on vdev %i after it was supposedly removed\n",
-- sta->addr, arvif->vdev_id);
-+ ath10k_warn(ar, "found sta peer %pM (ptr %p id %d) entry on vdev %i after it was supposedly removed\n",
-+ sta->addr, peer, i, arvif->vdev_id);
- peer->sta = NULL;
-+
-+ /* Clean up the peer object as well since we
-+ * must have failed to do this above.
-+ */
-+ list_del(&peer->list);
-+ ar->peer_map[i] = NULL;
-+ kfree(peer);
-+ ar->num_peers--;
- }
- }
- spin_unlock_bh(&ar->data_lock);