From 393d07cb6fb321182185c95088a646fcb9a7be04 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Tue, 9 Oct 2007 09:56:45 +0000 Subject: txqueuelen_eth0= now works, #190538. --- net.Linux/iproute2.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'net.Linux/iproute2.sh') diff --git a/net.Linux/iproute2.sh b/net.Linux/iproute2.sh index a59827a..e6652c0 100644 --- a/net.Linux/iproute2.sh +++ b/net.Linux/iproute2.sh @@ -160,6 +160,11 @@ iproute2_pre_start() { eval mtu=\$mtu_${IFVAR} [ -n "${mtu}" ] && ip link set mtu "${mtu}" dev "${IFACE}" + # TX Queue Length support + local len= + eval len=\$txqueuelen_${IFVAR} + [ -n "${len}" ] && ip link set txqueuelen "${len}" dev "${IFACE}" + local tunnel= eval tunnel=\$iptunnel_${IFVAR} if [ -n "${tunnel}" ] ; then -- cgit v1.2.3