[openwrt/openwrt] kernel: r8126: rss: enable ENABLE_MULTIPLE_TX_QUEUE

LEDE Commits lede-commits at lists.infradead.org
Wed Apr 23 02:14:26 PDT 2025


noltari pushed a commit to openwrt/openwrt.git, branch openwrt-24.10:
https://git.openwrt.org/c46ee416be7d50804143b92a217eb397d3e6797a

commit c46ee416be7d50804143b92a217eb397d3e6797a
Author: Álvaro Fernández Rojas <noltari at gmail.com>
AuthorDate: Wed Apr 23 09:37:43 2025 +0200

    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 at gmail.com>
    (cherry picked from commit a3e51a395652ec6b8b827de396b56ebc576d81e8)
---
 package/kernel/r8126/Makefile | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/kernel/r8126/Makefile b/package/kernel/r8126/Makefile
index 9f0f074d62..cce9045b23 100644
--- a/package/kernel/r8126/Makefile
+++ b/package/kernel/r8126/Makefile
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=r8126
 PKG_VERSION:=10.015.00
-PKG_RELEASE:=2
+PKG_RELEASE:=3
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_URL:=https://github.com/openwrt/rtl8126/releases/download/$(PKG_VERSION)
@@ -33,7 +33,9 @@ $(call KernelPackage/r8126)
 endef
 
 ifeq ($(BUILD_VARIANT),rss)
-  PKG_MAKE_FLAGS += ENABLE_RSS_SUPPORT=y
+  PKG_MAKE_FLAGS += \
+    ENABLE_MULTIPLE_TX_QUEUE=y \
+    ENABLE_RSS_SUPPORT=y
 endif
 
 define Build/Compile




More information about the lede-commits mailing list