From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Furniss Date: Thu, 10 Sep 2015 08:58:33 +0000 Subject: Re: is esfq discontinued ? Message-Id: <55F14639.4040107@gmail.com> List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: lartc@vger.kernel.org Akshat Kakkar wrote: > Hi! I tried to change the default queue to esfq by executing > > echo "esfq" > /proc/sys/net/core/default_qdisc > > But I got error bash: echo: write error: No such file or directory I can't even remember if it ever got in or not - but sfq hashing got the same flexibility - from man tc-sfq ... It is possible to use external classifiers with sfq, for example to hash traffic based only on source/destination ip addresses: # tc filter add ... flow hash keys src,dst perturb 30 divisor 1024 Note that the given divisor should match the one used by sfq. If you have changed the sfq default of 1024, use the same value for the flow hash filter, too. ...