12446c67fe
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>
36 lines
752 B
Makefile
36 lines
752 B
Makefile
obj-$(CONFIG_MAC80211) += mac80211.o
|
|
|
|
mac80211-objs-$(CONFIG_MAC80211_LEDS) += ieee80211_led.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_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 \
|
|
ieee80211_ioctl.o \
|
|
sta_info.o \
|
|
wep.o \
|
|
wpa.o \
|
|
ieee80211_sta.o \
|
|
ieee80211_iface.o \
|
|
ieee80211_rate.o \
|
|
michael.o \
|
|
regdomain.o \
|
|
tkip.o \
|
|
aes_ccm.o \
|
|
cfg.o \
|
|
rx.o \
|
|
tx.o \
|
|
key.o \
|
|
util.o \
|
|
event.o \
|
|
$(mac80211-objs-y)
|