From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-x22f.google.com (mail-wg0-x22f.google.com [IPv6:2a00:1450:400c:c00::22f]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by huchra.bufferbloat.net (Postfix) with ESMTPS id 10FA021F36E for ; Sun, 15 Feb 2015 06:39:51 -0800 (PST) Received: by mail-wg0-f47.google.com with SMTP id x12so11367968wgg.6 for ; Sun, 15 Feb 2015 06:39:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; bh=/Au5PCUBuDRSJf749gTHgFUBrpbY7cq9uGN7mxBetBw=; b=x4VXOJxO6YkkrpF0wShPRD3OXrnJOalhsR9Csor/SisC7McHIOD5sCEbECrMEYokWe AXIaAmviXHD3P65WaALXnigBoPvUGe6QhDdFC20sZjbfLqMIQ9wu4nhUkke7PCdDRncu L+05Zk42jsl4zBHNeyrK1CKkF70nL5gPvEuhh0eYFrmtIcpiHoLoNQLb8orX9Rf2zMat j1dN9/EHZ+0af+Z4zzmwYwwfu3nqCzAa7myPx4B5lyfWBztKSoRgmb4yTnRtLUJwR+n3 gZK/qLViF/Xl8D8pcfK2q6n9uax+EQVerdzoj/p3GncysOFjd6PkzSqvXwRwwZz76ery EzVA== X-Received: by 10.194.83.66 with SMTP id o2mr27362073wjy.55.1424011189157; Sun, 15 Feb 2015 06:39:49 -0800 (PST) Received: from volcano.scree.dyndns.org (host-89-243-100-183.as13285.net. [89.243.100.183]) by mx.google.com with ESMTPSA id cb14sm11352238wib.22.2015.02.15.06.39.47 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 15 Feb 2015 06:39:48 -0800 (PST) Message-ID: <54E0AFB2.5040806@gmail.com> Date: Sun, 15 Feb 2015 14:39:46 +0000 From: Alan Jenkins User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: =?UTF-8?B?VG9rZSBIw7hpbGFuZC1Kw7hyZ2Vuc2Vu?= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sun, 15 Feb 2015 07:03:57 -0800 Cc: openwrt-devel@lists.openwrt.org, luis@bitamins.net, cerowrt-devel@lists.bufferbloat.net Subject: [Cerowrt-devel] [sqm-scripts] not started at boot? X-BeenThere: cerowrt-devel@lists.bufferbloat.net X-Mailman-Version: 2.1.13 Precedence: list List-Id: Development issues regarding the cerowrt test router project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Feb 2015 14:40:21 -0000 Hi Toke I tried installing sqm-scripts from trunk, on Barrier Breaker on my wndr3800. It's very effective, but I notice SQM isn't applied at boot time. The system log complains about pppoe-wan interface not existing, when the sqm init script is started. My guess is it'd be the same even if my WNDR was running the base system from trunk. Because the sqm scripts don't have nice integration like the qos scripts package. Is that useful enough as a bug report? Do you need me to work on a proper patch? qos-scripts has a hotplug script, so I copied it for sqm and the problem is "fixed". Though my stupid script re-runs the sqm as every single network interface comes up, so it spams the log and probably slows things down a bit. (Maybe sqm script also wants to not be so noisy in the log) cat < /etc/hotplug.d/iface/10-sqm #!/bin/sh # my sqm isn't being enabled on boot # cargo-cult this hotplug script from qos-scripts [ "$ACTION" = ifup ] && /etc/init.d/sqm enabled && /usr/lib/sqm/run.sh EOF