From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.toke.dk (mail.toke.dk [52.28.52.200]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.bufferbloat.net (Postfix) with ESMTPS id D8EF03BA8E for ; Thu, 9 Nov 2017 02:20:41 -0500 (EST) From: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=toke.dk; s=20161023; t=1510212038; bh=GdirzoM787xlTBPJaL4FfAawGNXF02TSRVhUgzvmFuE=; h=From:To:Cc:Subject:Date:From; b=BmLjXuIuRqDNYwgQmprKvAb2lpnFp1w+yug9hubkAD1OM9XifCgjEN7bht3erCmed Ojl8MDKPZa74lpGNLQR7Dt9g7vGJjC1UZhrz+S474OJpUUAbbkQw+cg0am425POn4Z BZqLbBW1aQIlofbw4ptBABnqnHwbRU+doUt2Few1rKs3+0zrYy1nZqea8TrhTEq676 aJi0kgrPxuQs53F/jlLuWJ8/D25U+Qzmhj7hn5bvp0LbxRKHfhlMvVPH4Ti/X3TTMV 6x/Oh4LCrgissnLA6GNsWimRzppTrMyT5EbgSf0xMiRUD/LrRyMHa36Bb2hEYCpRso Y2KlvErcTFr+Q== To: make-wifi-fast@lists.bufferbloat.net, linux-wireless@vger.kernel.org Cc: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= Date: Thu, 9 Nov 2017 16:19:45 +0900 Message-Id: <20171109071945.11033-1-toke@toke.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Make-wifi-fast] [PATCH] ath10k: Re-enable TXQs for all devices X-BeenThere: make-wifi-fast@lists.bufferbloat.net X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Nov 2017 07:20:42 -0000 Commit 4ca1807815aa6801aaced7fdefa9edacc2521767 disables the use of the mac80211 TXQs for some devices because of a theoretical throughput regression. We have not seen this regression for a while now, so it should be safe to re-enable TXQs. Signed-off-by: Toke Høiland-Jørgensen --- This has been in LEDE trunk for a couple of months now with good results. drivers/net/wireless/ath/ath10k/mac.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c index 0a947eef348d..ca596ecd2d64 100644 --- a/drivers/net/wireless/ath/ath10k/mac.c +++ b/drivers/net/wireless/ath/ath10k/mac.c @@ -8329,15 +8329,6 @@ int ath10k_mac_register(struct ath10k *ar) ath10k_warn(ar, "failed to initialise DFS pattern detector\n"); } - /* Current wake_tx_queue implementation imposes a significant - * performance penalty in some setups. The tx scheduling code needs - * more work anyway so disable the wake_tx_queue unless firmware - * supports the pull-push mechanism. - */ - if (!test_bit(ATH10K_FW_FEATURE_PEER_FLOW_CONTROL, - ar->running_fw->fw_file.fw_features)) - ar->ops->wake_tx_queue = NULL; - ret = ath10k_mac_init_rd(ar); if (ret) { ath10k_err(ar, "failed to derive regdom: %d\n", ret); -- 2.15.0