projects
/
openwrt
/
staging
/
linusw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f99b39f
)
kernel: r8125: rss: enable ENABLE_MULTIPLE_TX_QUEUE
author
Pavel Kubelun
<
[email protected]
>
Wed, 16 Apr 2025 18:07:32 +0000
(21:07 +0300)
committer
Álvaro Fernández Rojas
<
[email protected]
>
Wed, 23 Apr 2025 07:36:46 +0000
(09:36 +0200)
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 <
[email protected]
>
Link:
https://github.com/openwrt/openwrt/pull/18509
[bump release, improve commit description and package changes]
Signed-off-by: Álvaro Fernández Rojas <
[email protected]
>
package/kernel/r8125/Makefile
patch
|
blob
|
history
diff --git
a/package/kernel/r8125/Makefile
b/package/kernel/r8125/Makefile
index 6a97143e1706d39a230cd4f9b03ee2ffc5fddb4c..70b58198cc9c8ceaf24a4e4c8908e4e300715430 100644
(file)
--- 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