Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 79af1f86 authored by Johannes Berg's avatar Johannes Berg
Browse files

mac80211: avoid allocating TXQs that won't be used



For AP_VLAN and monitor interfaces we'll never use the TXQs
we allocated, so avoid doing so.

Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 3c75f6ee
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1772,7 +1772,9 @@ int ieee80211_if_add(struct ieee80211_local *local, const char *name,
				 sizeof(void *));
		int txq_size = 0;

		if (local->ops->wake_tx_queue)
		if (local->ops->wake_tx_queue &&
		    type != NL80211_IFTYPE_AP_VLAN &&
		    type != NL80211_IFTYPE_MONITOR)
			txq_size += sizeof(struct txq_info) +
				    local->hw.txq_data_size;