Skip to content

Commit c46ee41

Browse files
committed
kernel: r8126: rss: enable ENABLE_MULTIPLE_TX_QUEUE
We need both ENABLE_RSS_SUPPORT and ENABLE_MULTIPLE_TX_QUEUE in order to support multiple RX and TX queues. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> (cherry picked from commit a3e51a3)
1 parent a42c06d commit c46ee41

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

package/kernel/r8126/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
22

33
PKG_NAME:=r8126
44
PKG_VERSION:=10.015.00
5-
PKG_RELEASE:=2
5+
PKG_RELEASE:=3
66

77
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
88
PKG_SOURCE_URL:=https://github.com/openwrt/rtl8126/releases/download/$(PKG_VERSION)
@@ -33,7 +33,9 @@ $(call KernelPackage/r8126)
3333
endef
3434

3535
ifeq ($(BUILD_VARIANT),rss)
36-
PKG_MAKE_FLAGS += ENABLE_RSS_SUPPORT=y
36+
PKG_MAKE_FLAGS += \
37+
ENABLE_MULTIPLE_TX_QUEUE=y \
38+
ENABLE_RSS_SUPPORT=y
3739
endif
3840

3941
define Build/Compile

0 commit comments

Comments
 (0)