Commit 15f6d6d5 authored by Sujith Manoharan's avatar Sujith Manoharan Committed by John W. Linville

ath9k_htc: Reduce TX queue size

The current max queue length of 1024 is quite large
and unnecessary. 256 suffices well enough even for high
throughput situations.
Signed-off-by: default avatarSujith Manoharan <Sujith.Manoharan@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 658ef04f
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
/* FIXME: Verify these numbers (with Windows) */ /* FIXME: Verify these numbers (with Windows) */
#define MAX_TX_URB_NUM 8 #define MAX_TX_URB_NUM 8
#define MAX_TX_BUF_NUM 1024 #define MAX_TX_BUF_NUM 256
#define MAX_TX_BUF_SIZE 32768 #define MAX_TX_BUF_SIZE 32768
#define MAX_TX_AGGR_NUM 20 #define MAX_TX_AGGR_NUM 20
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment