From: gautamramk@gmail.com
To: netdev@vger.kernel.org
Cc: "Gautam Ramakrishnan" <gautamramk@gmail.com>,
"Jamal Hadi Salim" <jhs@mojatatu.com>,
"David S . Miller" <davem@davemloft.net>,
"Dave Taht" <dave.taht@gmail.com>,
"Toke Høiland-Jørgensen" <toke@redhat.com>,
"Leslie Monis" <lesliemonis@gmail.com>,
"Mohit P . Tahiliani" <tahiliani@nitk.edu.in>
Subject: [PATCH net-next v2 0/2] net: sched: add Flow Queue PIE packet scheduler
Date: Tue, 31 Dec 2019 16:53:14 +0530 [thread overview]
Message-ID: <20191231112316.2788-1-gautamramk@gmail.com> (raw)
From: Gautam Ramakrishnan <gautamramk@gmail.com>
Flow Queue PIE packet scheduler
This patch series implements the Flow Queue Proportional
Integral controller Enhanced (FQ-PIE) active queue
Management algorithm. It is an enhancement over the PIE
algorithm. It integrates the PIE AQM with a deficit round-robin
scheme.
FQ-PIE is implemented over the latest version of PIE which uses timestamps
to calculate queue delay with an additional option of using average dequeue
rate (Little's law) to calculate the queue delay. This patch also adds a
memory limit of all the packets across all queues to a default value of
32Mb.
For more information:
https://tools.ietf.org/html/rfc8033
Changes from v1 (and RFC patch) to v2
- Added timestamp to calculate queue delay as recommended
by Dave Taht
- Packet memory limit implemented as recommended by Toke.
- Added external classifier as recommended by Toke.
- Used NET_XMIT_CN instead of NET_XMIT_DROP as the return
value in the fq_pie_qdisc_enqueue function.
Mohit P. Tahiliani (2):
net: sched: pie: refactor code
net: sched: add Flow Queue PIE packet scheduler
include/net/pie.h | 401 ++++++++++++++++++++++++
include/uapi/linux/pkt_sched.h | 33 ++
net/sched/Kconfig | 11 +
net/sched/Makefile | 1 +
net/sched/sch_fq_pie.c | 550 +++++++++++++++++++++++++++++++++
net/sched/sch_pie.c | 386 +----------------------
6 files changed, 1011 insertions(+), 371 deletions(-)
create mode 100644 include/net/pie.h
create mode 100644 net/sched/sch_fq_pie.c
--
2.17.1
next reply other threads:[~2019-12-31 11:24 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-31 11:23 gautamramk [this message]
2019-12-31 11:23 ` [PATCH net-next v2 1/2] net: sched: pie: refactor code gautamramk
2019-12-31 17:04 ` Stephen Hemminger
2020-01-01 6:35 ` Leslie Monis
2019-12-31 11:23 ` [PATCH net-next v2 2/2] net: sched: add Flow Queue PIE packet scheduler gautamramk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191231112316.2788-1-gautamramk@gmail.com \
--to=gautamramk@gmail.com \
--cc=dave.taht@gmail.com \
--cc=davem@davemloft.net \
--cc=jhs@mojatatu.com \
--cc=lesliemonis@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=tahiliani@nitk.edu.in \
--cc=toke@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).