[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191231112316.2788-1-gautamramk@gmail.com>
Date: Tue, 31 Dec 2019 16:53:14 +0530
From: gautamramk@...il.com
To: netdev@...r.kernel.org
Cc: Gautam Ramakrishnan <gautamramk@...il.com>,
Jamal Hadi Salim <jhs@...atatu.com>,
"David S . Miller" <davem@...emloft.net>,
Dave Taht <dave.taht@...il.com>,
Toke Høiland-Jørgensen <toke@...hat.com>,
Leslie Monis <lesliemonis@...il.com>,
"Mohit P . Tahiliani" <tahiliani@...k.edu.in>
Subject: [PATCH net-next v2 0/2] net: sched: add Flow Queue PIE packet scheduler
From: Gautam Ramakrishnan <gautamramk@...il.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
Powered by blists - more mailing lists