diff options
author | Stefano Brivio <stefano.brivio@polimi.it> | 2007-12-23 17:49:00 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:00:55 -0800 |
commit | 1b507e7e538ee1c8a25e698911a44604d6be3954 (patch) | |
tree | 84dde26e574748e489aae81f9c551f5ed6e2bec8 /net/mac80211 | |
parent | 6d65f5db2f66e3ff44df759fbbb3c7482879fb1e (diff) | |
download | linux-3.10-1b507e7e538ee1c8a25e698911a44604d6be3954.tar.gz linux-3.10-1b507e7e538ee1c8a25e698911a44604d6be3954.tar.bz2 linux-3.10-1b507e7e538ee1c8a25e698911a44604d6be3954.zip |
rc80211-pid: fix definition of rate control interval
Fix the rate control interval definition. Thanks to Mattias Nissler for
spotting this out.
Cc: Mattias Nissler <mattias.nissler@gmx.de>
Signed-off-by: Stefano Brivio <stefano.brivio@polimi.it>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/rc80211_pid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/rc80211_pid.h b/net/mac80211/rc80211_pid.h index b98e16afe4d..04afc13ed82 100644 --- a/net/mac80211/rc80211_pid.h +++ b/net/mac80211/rc80211_pid.h @@ -10,8 +10,8 @@ #ifndef RC80211_PID_H #define RC80211_PID_H -/* Sampling period for measuring percentage of failed frames. */ -#define RC_PID_INTERVAL (HZ / 8) +/* Sampling period for measuring percentage of failed frames in ms. */ +#define RC_PID_INTERVAL 125 /* Exponential averaging smoothness (used for I part of PID controller) */ #define RC_PID_SMOOTHING_SHIFT 3 |