projects
/
openwrt
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5658094
)
kernel: r8127: rss: enable ENABLE_MULTIPLE_TX_QUEUE
author
Álvaro Fernández Rojas
<
[email protected]
>
Wed, 23 Apr 2025 07:38:04 +0000
(09:38 +0200)
committer
Álvaro Fernández Rojas
<
[email protected]
>
Wed, 11 Jun 2025 16:43:00 +0000
(18:43 +0200)
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 <
[email protected]
>
(cherry picked from commit
7615de6ef0830d3917de66aaf4d5df6d3ff45c61
)
package/kernel/r8127/Makefile
patch
|
blob
|
history
diff --git
a/package/kernel/r8127/Makefile
b/package/kernel/r8127/Makefile
index b4b1c49eb5edd13843342a75fce1d041089c4703..4a1035cc4cc31d231b86b2a95d6d6996d52169e0 100644
(file)
--- a/
package/kernel/r8127/Makefile
+++ b/
package/kernel/r8127/Makefile
@@
-2,7
+2,7
@@
include $(TOPDIR)/rules.mk
PKG_NAME:=r8127
PKG_VERSION:=11.014.00
-PKG_RELEASE:=
2
+PKG_RELEASE:=
3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=https://github.com/openwrt/rtl8127/releases/download/$(PKG_VERSION)
@@
-33,7
+33,9
@@
$(call KernelPackage/r8127)
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