linux/drivers/net/wireless/ath/ath6kl
Vasanthakumar Thiagarajan 8cb6d9915f ath6kl: Fix error in writing create_qos debugfs
100 bytes are allocated to store the parameters which are needed
to create a priority stream. These 100 bytes are not sufficiant and
throws error when running the following command.

echo "6 2 3 1 1 9999999 9999999 9999999 7777777 0 6 45000 200 56789000
 56789000 5678900 0 0 9999999 20000 0" > create_qos

179 bytes are needed when the following vlaues are given so that
a maximum possible value in that data type can be given in decimal.

echo "255 255 255 255 255 4294967295 4294967295 4294967295 4294967295
 4294967295 255 65535 65535 4294967295 4294967295 4294967295 4294967295
 4294967295 4294967295 4294967295 4294967295" > create_qos

Following takes 187 bytes when given in hex

echo "0xff 0xff 0xff 0xff 0xff 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff
 0xff 0xffff 0xffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff
 0xffffffff 0xffffffff" > create_qos

Increase the size to 200 bytes so that it can hold upto the maximum
value possible for that data type.

Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
2011-11-11 13:00:01 +02:00
..
Kconfig ath6kl: remove dependency to wireless extensions 2011-08-09 19:45:22 +03:00
Makefile ath6kl: move htc_hif to hif.c 2011-11-11 12:50:55 +02:00
bmi.c ath6kl: power down hardware when interface is down 2011-11-11 12:58:59 +02:00
bmi.h ath6kl: power down hardware when interface is down 2011-11-11 12:58:59 +02:00
cfg80211.c ath6kl: Expose ath6kl's WOW capabilities to cfg80211 2011-11-11 13:00:00 +02:00
cfg80211.h ath6kl: Add new state for WOW mode 2011-11-11 12:59:59 +02:00
common.h ath6kl: move all credit distribution code to htc.c 2011-11-11 12:58:54 +02:00
core.h ath6kl: Perform WOW resume in RX path in case of SDIO IRQ wake up 2011-11-11 13:00:00 +02:00
debug.c ath6kl: Fix error in writing create_qos debugfs 2011-11-11 13:00:01 +02:00
debug.h ath6kl: cut power during suspend 2011-11-11 12:59:00 +02:00
hif-ops.h ath6kl: Include new parameter in suspend path for wowlan 2011-11-11 12:59:59 +02:00
hif.c ath6kl: print firmware crashes always 2011-11-11 12:58:59 +02:00
hif.h ath6kl: Include new parameter in suspend path for wowlan 2011-11-11 12:59:59 +02:00
htc.c ath6kl: print seqno in htc debug logs 2011-11-11 12:58:59 +02:00
htc.h ath6kl: use ath6kl_credit prefix consistently 2011-11-11 12:58:54 +02:00
init.c ath6kl: add suspend_cutpower module parameter 2011-11-11 12:59:58 +02:00
main.c ath6kl: Fix key configuration to copy at most seq_len from seq 2011-11-11 12:59:59 +02:00
sdio.c ath6kl: Remove WARN_ON msg in Suspend path 2011-11-11 13:00:00 +02:00
target.h ath6kl: Configure inteface information at init time 2011-11-11 12:58:52 +02:00
testmode.c ath6kl: add testmode support 2011-09-01 10:14:21 +03:00
testmode.h ath6kl: fix compilation when NL80211_TESTMODE is disabled 2011-09-01 12:04:59 +03:00
txrx.c ath6kl: Fix tx packet drop in AP mode with bridge 2011-11-11 13:00:01 +02:00
wmi.c ath6kl: Remove few unused WMI stuff 2011-11-11 13:00:00 +02:00
wmi.h ath6kl: Remove few unused WMI stuff 2011-11-11 13:00:00 +02:00