All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next v3 0/2] net: sched: add Flow Queue PIE packet scheduler
@ 2020-01-10  6:26 gautamramk
  2020-01-10  6:26 ` [PATCH net-next v3 1/2] net: sched: pie: refactor code gautamramk
  2020-01-10  6:26 ` [PATCH net-next v3 2/2] net: sched: add Flow Queue PIE packet scheduler gautamramk
  0 siblings, 2 replies; 8+ messages in thread
From: gautamramk @ 2020-01-10  6:26 UTC (permalink / raw)
  To: netdev
  Cc: Gautam Ramakrishnan, Jamal Hadi Salim, David S . Miller,
	Dave Taht, Toke Høiland-Jørgensen, Leslie Monis,
	Mohit P . Tahiliani

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 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 v2 to v3
 - Exported drop_early, pie_process_dequeue and
   calculate_probability functions from sch_pie as
   suggested by Stephen Hemminger.

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              | 138 +++++++++
 include/uapi/linux/pkt_sched.h |  33 ++
 net/sched/Kconfig              |  12 +
 net/sched/Makefile             |   1 +
 net/sched/sch_fq_pie.c         | 550 +++++++++++++++++++++++++++++++++
 net/sched/sch_pie.c            | 302 +++++++-----------
 6 files changed, 846 insertions(+), 190 deletions(-)
 create mode 100644 include/net/pie.h
 create mode 100644 net/sched/sch_fq_pie.c

-- 
2.17.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-01-13 13:34 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-10  6:26 [PATCH net-next v3 0/2] net: sched: add Flow Queue PIE packet scheduler gautamramk
2020-01-10  6:26 ` [PATCH net-next v3 1/2] net: sched: pie: refactor code gautamramk
2020-01-10  6:26 ` [PATCH net-next v3 2/2] net: sched: add Flow Queue PIE packet scheduler gautamramk
2020-01-13  1:36   ` Jakub Kicinski
2020-01-13 11:44     ` Toke Høiland-Jørgensen
2020-01-13 12:19       ` Jakub Kicinski
2020-01-13 12:33         ` Toke Høiland-Jørgensen
2020-01-13 13:34           ` Gautam Ramakrishnan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.