aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/Makefile
diff options
context:
space:
mode:
authorMattias Nissler <mattias.nissler@gmx.de>2007-12-19 01:27:18 +0100
committerDavid S. Miller <davem@davemloft.net>2008-01-28 14:59:44 -0800
commit12446c67fea1e5bc74c58e43ef53eea308cdda61 (patch)
tree597ab96b5a7827d53ba676e78530646f842b4bde /net/mac80211/Makefile
parent1dc4d1e6a1e81fee0d488cec4fcd39269ec51318 (diff)
downloadkernel_samsung_smdk4412-12446c67fea1e5bc74c58e43ef53eea308cdda61.zip
kernel_samsung_smdk4412-12446c67fea1e5bc74c58e43ef53eea308cdda61.tar.gz
kernel_samsung_smdk4412-12446c67fea1e5bc74c58e43ef53eea308cdda61.tar.bz2
rc80211-pid: add debugging
This adds a new debugfs file from which rate control relevant events can be read one event per line. The output includes the current time, so graphs can be created showing the rate control parameters. This helps in evaluating and tuning rate control parameters. While at it, we split headers and code for better readability. Signed-off-by: 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/Makefile')
-rw-r--r--net/mac80211/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/net/mac80211/Makefile b/net/mac80211/Makefile
index a375f04..06aea80 100644
--- a/net/mac80211/Makefile
+++ b/net/mac80211/Makefile
@@ -1,10 +1,17 @@
obj-$(CONFIG_MAC80211) += mac80211.o
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_RC_SIMPLE) += rc80211_simple.o
-mac80211-objs-$(CONFIG_MAC80211_RC_PID) += rc80211_pid.o
+mac80211-objs-$(CONFIG_MAC80211_RC_PID) += rc80211_pid_algo.o
+
+mac80211-debugfs-objs-$(CONFIG_MAC80211_RC_PID) += rc80211_pid_debugfs.o
+mac80211-objs-$(CONFIG_MAC80211_DEBUGFS) += \
+ debugfs.o \
+ debugfs_sta.o \
+ debugfs_netdev.o \
+ debugfs_key.o \
+ $(mac80211-debugfs-objs-y)
mac80211-objs := \
ieee80211.o \