diff options
author | David S. Miller <davem@davemloft.net> | 2010-05-16 02:14:16 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-16 02:14:16 -0400 |
commit | 1cdc5abf40c561982d2f7b06bcff17f9496309a5 (patch) | |
tree | 92c0ca1688929a6660dc41e97df203aef23b8c09 /drivers/net/wimax/i2400m/netdev.c | |
parent | e0f43752a942b7be1bc06b9fd74e20ae337c1cca (diff) | |
parent | 0fb0a4f00aaf5de9f328273d7a46e3aa27dab496 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/inaky/wimax
Diffstat (limited to 'drivers/net/wimax/i2400m/netdev.c')
-rw-r--r-- | drivers/net/wimax/i2400m/netdev.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/net/wimax/i2400m/netdev.c b/drivers/net/wimax/i2400m/netdev.c index 149b9f57e5cc..94742e1eafe0 100644 --- a/drivers/net/wimax/i2400m/netdev.c +++ b/drivers/net/wimax/i2400m/netdev.c | |||
@@ -84,17 +84,15 @@ | |||
84 | 84 | ||
85 | enum { | 85 | enum { |
86 | /* netdev interface */ | 86 | /* netdev interface */ |
87 | /* | ||
88 | * Out of NWG spec (R1_v1.2.2), 3.3.3 ASN Bearer Plane MTU Size | ||
89 | * | ||
90 | * The MTU is 1400 or less | ||
91 | */ | ||
92 | I2400M_MAX_MTU = 1400, | ||
93 | /* 20 secs? yep, this is the maximum timeout that the device | 87 | /* 20 secs? yep, this is the maximum timeout that the device |
94 | * might take to get out of IDLE / negotiate it with the base | 88 | * might take to get out of IDLE / negotiate it with the base |
95 | * station. We add 1sec for good measure. */ | 89 | * station. We add 1sec for good measure. */ |
96 | I2400M_TX_TIMEOUT = 21 * HZ, | 90 | I2400M_TX_TIMEOUT = 21 * HZ, |
97 | I2400M_TX_QLEN = 5, | 91 | /* |
92 | * Experimentation has determined that, 20 to be a good value | ||
93 | * for minimizing the jitter in the throughput. | ||
94 | */ | ||
95 | I2400M_TX_QLEN = 20, | ||
98 | }; | 96 | }; |
99 | 97 | ||
100 | 98 | ||