From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-bk0-f43.google.com (mail-bk0-f43.google.com [209.85.214.43]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority" (verified OK)) by huchra.bufferbloat.net (Postfix) with ESMTPS id 9D517200B29 for ; Mon, 14 May 2012 01:23:42 -0700 (PDT) Received: by bkty5 with SMTP id y5so8124827bkt.16 for ; Mon, 14 May 2012 01:23:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:x-mailer:content-transfer-encoding; bh=wdUbTh28vrEyjcLx5Qg4Q/fuHRONI3RX4JdBRDNz2iQ=; b=lreUrU/yQYvVvGyiJ5DW4fJjxMNr9XaG7HQ9fRzP0TA1DOuzpHqYeC6KVfGT/JDtJl qL2+1xM8PNAfGGp3M8rFUBsC4S+0YqzqDaxyYK+O3pSdyNVeECt7xy/kMcq0ssTNJ2vL YqpeBwTzhAolNG+QSQ0bQ+MMIGMCI5cihkSVvqfr+/H/9RMGVE6VVQZDGlxMNsH2wKRE VQOxiTItJ+DKDEGJ5MiHQhFIq2C/ymxZBNqFyxL5fNbCMwdGpH1piaR+golFuYXLFKuP n7Lr61mtRvXpEHDSWquS6n+YZDzjOv/+AmaGlEXmSZ73B2yI9V6jmPVVCKj6pYr3EHi/ 0IAw== Received: by 10.204.148.74 with SMTP id o10mr2688490bkv.111.1336983820282; Mon, 14 May 2012 01:23:40 -0700 (PDT) Received: from [172.30.42.18] (122.237.66.86.rev.sfr.net. [86.66.237.122]) by mx.google.com with ESMTPS id e20sm32614681bkv.10.2012.05.14.01.23.37 (version=SSLv3 cipher=OTHER); Mon, 14 May 2012 01:23:38 -0700 (PDT) From: Eric Dumazet To: Roger =?ISO-8859-1?Q?J=F8rgensen?= In-Reply-To: References: <1336855256.31653.1329.camel@edumazet-glaptop> <20120512.164513.1156706853054390966.davem@davemloft.net> <1336859324.31653.1385.camel@edumazet-glaptop> <20120512.175217.1632102067268101115.davem@davemloft.net> <1336893803.8512.43.camel@edumazet-glaptop> <4FB09F8D.6070403@gmail.com> <1336976277.8512.46.camel@edumazet-glaptop> <4FB0A73F.9090501@gmail.com> <4FB0AA68.2000800@gmail.com> Content-Type: text/plain; charset="UTF-8" Date: Mon, 14 May 2012 10:23:35 +0200 Message-ID: <1336983815.8512.89.camel@edumazet-glaptop> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Content-Transfer-Encoding: 8bit Cc: codel@lists.bufferbloat.net Subject: Re: [Codel] [PATCH net-next] codel: use Newton method instead of sqrt() and divides X-BeenThere: codel@lists.bufferbloat.net X-Mailman-Version: 2.1.13 Precedence: list List-Id: CoDel AQM discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 May 2012 08:23:43 -0000 On Mon, 2012-05-14 at 08:51 +0200, Roger Jørgensen wrote: > could you pass me the script for setting that up, got nowhere with any > of the previous... will try the same on some 10GigE servers over v6... If multi-queue, you probably could use : EST="est 1sec 4sec" TXQUEUES=24 DEV=eth7 # ethtool -K $DEV tso off gso off tc qdisc del dev $DEV root 2>/dev/null tc qdisc add dev $DEV root handle 1: mq for i in `seq 1 $TXQUEUES` do hexa=$(printf %02x $i) tc qdisc add dev $DEV parent 1:$hexa fq_codel done