[openwrt/openwrt] kernel: kmod-tcp-scalable: add scalable tcp congestion algorithm

LEDE Commits lede-commits at lists.infradead.org
Tue Mar 1 13:12:18 PST 2022


hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/02e42f0650a64f29e8e21f7ba0a8ceb366463585

commit 02e42f0650a64f29e8e21f7ba0a8ceb366463585
Author: Catalin Toda <catalinii at gmail.com>
AuthorDate: Mon Feb 28 19:57:28 2022 +0000

    kernel: kmod-tcp-scalable: add scalable tcp congestion algorithm
    
    Signed-off-by: Catalin Toda <catalinii at gmail.com>
---
 package/kernel/linux/modules/netsupport.mk | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/package/kernel/linux/modules/netsupport.mk b/package/kernel/linux/modules/netsupport.mk
index e37ab59575..92ff194a62 100644
--- a/package/kernel/linux/modules/netsupport.mk
+++ b/package/kernel/linux/modules/netsupport.mk
@@ -986,6 +986,24 @@ endef
 $(eval $(call KernelPackage,tcp-hybla))
 
 
+define KernelPackage/tcp-scalable
+  SUBMENU:=$(NETWORK_SUPPORT_MENU)
+  TITLE:=TCP-Scalable congestion control algorithm
+  KCONFIG:=CONFIG_TCP_CONG_SCALABLE
+  FILES:=$(LINUX_DIR)/net/ipv4/tcp_scalable.ko
+  AUTOLOAD:=$(call AutoProbe,tcp-scalable)
+endef
+
+define KernelPackage/tcp-scalable/description
+  Scalable TCP is a sender-side only change to TCP which uses a
+	MIMD congestion control algorithm which has some nice scaling
+	properties, though is known to have fairness issues.
+	See http://www.deneholme.net/tom/scalable/
+endef
+
+$(eval $(call KernelPackage,tcp-scalable))
+
+
 define KernelPackage/ax25
   SUBMENU:=$(NETWORK_SUPPORT_MENU)
   TITLE:=AX25 support




More information about the lede-commits mailing list