Skip to content

Commit

Permalink
rtlwifi: Increase the RX queue length for USB drivers
Browse files Browse the repository at this point in the history
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>
Cc: Stable <stable@vger.kernel.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Larry Finger authored and John W. Linville committed Dec 5, 2013
1 parent c908c74 commit dc64057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/rtlwifi/usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,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)
{
Expand Down

0 comments on commit dc64057

Please sign in to comment.