diff options
| author | Pavel Kubelun | 2025-04-16 18:07:32 +0000 |
|---|---|---|
| committer | Álvaro Fernández Rojas | 2025-04-23 08:24:50 +0000 |
| commit | a42c06d674769dcb194658cfcec4387b6dc5132a (patch) | |
| tree | 32987a5ef2af47f8529b80944af4e67009fc1276 | |
| parent | ec82f459c9a5d7ed8f55bf5a175e80e8f57c3d63 (diff) | |
| download | openwrt-a42c06d674769dcb194658cfcec4387b6dc5132a.tar.gz | |
kernel: r8125: 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: Pavel Kubelun <be.dissent@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/18509
[bump release, improve commit description and package changes]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
(cherry picked from commit d127963a4676909d2f58eb54859925a25cdaa063)
| -rw-r--r-- | package/kernel/r8125/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/kernel/r8125/Makefile b/package/kernel/r8125/Makefile index 6a97143e17..70b58198cc 100644 --- a/package/kernel/r8125/Makefile +++ b/package/kernel/r8125/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=r8125 PKG_VERSION:=9.015.00 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://github.com/openwrt/rtl8125/releases/download/$(PKG_VERSION) @@ -34,7 +34,9 @@ $(call KernelPackage/r8125) 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 |