diff options
author | Mattias Nissler <mattias.nissler@gmx.de> | 2007-12-19 01:25:57 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 14:59:18 -0800 |
commit | ad01837593338f13508463fa11c8dbf8109a1e5d (patch) | |
tree | 77b521a6b8e7f8357505449fe812a9d41d40afb2 /net/mac80211/Makefile | |
parent | 1abbe498e4b5e4f2000dfc30a0fa25be9553530e (diff) | |
download | linux-ad01837593338f13508463fa11c8dbf8109a1e5d.tar.gz linux-ad01837593338f13508463fa11c8dbf8109a1e5d.tar.bz2 linux-ad01837593338f13508463fa11c8dbf8109a1e5d.zip |
mac80211: add PID controller based rate control algorithm
Add a new rate control algorithm based on a PID controller. It samples the
percentage of failed frames over time, feeds the result into the controller and
uses its output to control the TX rate.
Signed-off-by: Mattias Nissler <mattias.nissler@gmx.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mac80211/Makefile')
-rw-r--r-- | net/mac80211/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/Makefile b/net/mac80211/Makefile index 1e6237b34846..62c01ca099e5 100644 --- a/net/mac80211/Makefile +++ b/net/mac80211/Makefile @@ -4,6 +4,7 @@ mac80211-objs-$(CONFIG_MAC80211_LEDS) += ieee80211_led.o mac80211-objs-$(CONFIG_MAC80211_DEBUGFS) += debugfs.o debugfs_sta.o debugfs_netdev.o debugfs_key.o mac80211-objs-$(CONFIG_NET_SCHED) += wme.o mac80211-objs-$(CONFIG_MAC80211_RCSIMPLE) += rc80211_simple.o +mac80211-objs-$(CONFIG_MAC80211_RCPID) += rc80211_pid.o mac80211-objs := \ ieee80211.o \ |