If 802.11n is enabled, bump the number of buffers used up to a larger

level.

This is important for AMPDU RX as each burst is multiple packets in a row.
This commit is contained in:
Adrian Chadd 2011-03-26 11:58:29 +00:00
parent 01a9e1a11b
commit a74f5bf40c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=220033

View file

@ -43,6 +43,14 @@
#define ATH_TIMEOUT 1000
/*
* 802.11n requires more TX and RX buffers to do AMPDU.
*/
#ifdef AH_ENABLE_11N
#define ATH_TXBUF 512
#define ATH_RXBUF 512
#endif
#ifndef ATH_RXBUF
#define ATH_RXBUF 40 /* number of RX buffers */
#endif