rtlwifi: Increase the RX queue length for USB drivers

commit dc64057122 upstream.

The current number of RX buffers queued is 32, which is too small under
heavy load. That number is doubled.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Larry Finger
2013-11-18 11:11:30 -06:00
committed by Greg Kroah-Hartman
parent 057648f92b
commit 12470254ad

View File

@@ -550,7 +550,7 @@ static void _rtl_rx_pre_process(struct ieee80211_hw *hw, struct sk_buff *skb)
}
}
#define __RX_SKB_MAX_QUEUED 32
#define __RX_SKB_MAX_QUEUED 64
static void _rtl_rx_work(unsigned long param)
{