Commit ded0fd62 authored by Prasanna S. Panchamukhi's avatar Prasanna S. Panchamukhi Committed by Inaky Perez-Gonzalez

wimax/i2400m: increase tx queue length from 5 to 20 [v1]

This patch increases the tx_queue_len to 20 so as to
minimize the jitter in the throughput.
Signed-off-by: default avatarPrasanna S. Panchamukhi <prasannax.s.panchamukhi@intel.com>
parent 85a19e07
...@@ -88,7 +88,11 @@ enum { ...@@ -88,7 +88,11 @@ enum {
* might take to get out of IDLE / negotiate it with the base * might take to get out of IDLE / negotiate it with the base
* station. We add 1sec for good measure. */ * station. We add 1sec for good measure. */
I2400M_TX_TIMEOUT = 21 * HZ, I2400M_TX_TIMEOUT = 21 * HZ,
I2400M_TX_QLEN = 5, /*
* Experimentation has determined that, 20 to be a good value
* for minimizing the jitter in the throughput.
*/
I2400M_TX_QLEN = 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