提交 79af1f86 编写于 作者: J Johannes Berg

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: NJohannes Berg <johannes.berg@intel.com>
上级 3c75f6ee
...@@ -1772,7 +1772,9 @@ int ieee80211_if_add(struct ieee80211_local *local, const char *name, ...@@ -1772,7 +1772,9 @@ int ieee80211_if_add(struct ieee80211_local *local, const char *name,
sizeof(void *)); sizeof(void *));
int txq_size = 0; 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) + txq_size += sizeof(struct txq_info) +
local->hw.txq_data_size; local->hw.txq_data_size;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册