projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c75f6e
)
mac80211: avoid allocating TXQs that won't be used
author
Johannes Berg
<johannes.berg@intel.com>
Thu, 22 Jun 2017 10:20:29 +0000
(12:20 +0200)
committer
Johannes Berg
<johannes.berg@intel.com>
Thu, 21 Sep 2017 09:41:57 +0000
(11:41 +0200)
For AP_VLAN and monitor interfaces we'll never use the TXQs
we allocated, so avoid doing so.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/iface.c
patch
|
blob
|
history
diff --git
a/net/mac80211/iface.c
b/net/mac80211/iface.c
index f75029abf7286d54708b1739ee5faa89a43fe2ff..2619daa29961302ff3de9472457b75e5dcf3c876 100644
(file)
--- a/
net/mac80211/iface.c
+++ b/
net/mac80211/iface.c
@@
-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;