]> git.proxmox.com Git - mirror_iproute2.git/commit
Add SKB Priority qdisc support in tc(8)
authorNishanth Devarajan <ndev2021@gmail.com>
Tue, 14 Aug 2018 02:57:21 +0000 (08:27 +0530)
committerDavid Ahern <dsahern@gmail.com>
Tue, 14 Aug 2018 14:06:43 +0000 (07:06 -0700)
commit141b55f8544e009c6f488036a795caae28666784
treeefccf90e021833fe70dc7a31567486a48d04c5d7
parentc044be6b342a83362ae1c17289a9659077cc0b70
Add SKB Priority qdisc support in tc(8)

sch_skbprio is a qdisc that prioritizes packets according to their skb->priority
field. Under congestion, it drops already-enqueued lower priority packets to
make space available for higher priority packets. Skbprio was conceived as a
solution for denial-of-service defenses that need to route packets with
different priorities as a means to overcome DoS attacks.

Signed-off-by: Nishanth Devarajan <ndev2021@gmail.com>
Reviewed-by: Michel Machado <michel@digirati.com.br>
Signed-off-by: David Ahern <dsahern@gmail.com>
man/man8/tc-skbprio.8 [new file with mode: 0644]
tc/Makefile
tc/q_skbprio.c [new file with mode: 0644]