Blame man/man7/tc-hfsc.7

Packit d3f73b
.TH "TC\-HFSC" 7 "31 October 2011" iproute2 Linux
Packit d3f73b
.SH "NAME"
Packit d3f73b
tc-hfcs \- Hierarchical Fair Service Curve
Packit d3f73b
.
Packit d3f73b
.SH "HISTORY & INTRODUCTION"
Packit d3f73b
.
Packit d3f73b
HFSC (Hierarchical Fair Service Curve) is a network packet scheduling algorithm that was first presented at
Packit d3f73b
SIGCOMM'97. Developed as a part of ALTQ (ALTernative Queuing) on NetBSD, found
Packit d3f73b
its way quickly to other BSD systems, and then a few years ago became part of
Packit d3f73b
the linux kernel. Still, it's not the most popular scheduling algorithm \-
Packit d3f73b
especially if compared to HTB \- and it's not well documented for the enduser. This introduction aims to explain how HFSC works without using
Packit d3f73b
too much math (although some math it will be
Packit d3f73b
inevitable).
Packit d3f73b
Packit d3f73b
In short HFSC aims to:
Packit d3f73b
.
Packit d3f73b
.RS 4
Packit d3f73b
.IP \fB1)\fR 4
Packit d3f73b
guarantee precise bandwidth and delay allocation for all leaf classes (realtime
Packit d3f73b
criterion)
Packit d3f73b
.IP \fB2)\fR
Packit d3f73b
allocate excess bandwidth fairly as specified by class hierarchy (linkshare &
Packit d3f73b
upperlimit criterion)
Packit d3f73b
.IP \fB3)\fR
Packit d3f73b
minimize any discrepancy between the service curve and the actual amount of
Packit d3f73b
service provided during linksharing
Packit d3f73b
.RE
Packit d3f73b
.PP
Packit d3f73b
.
Packit d3f73b
The main "selling" point of HFSC is feature \fB(1)\fR, which is achieved by
Packit d3f73b
using nonlinear service curves (more about what it actually is later). This is
Packit d3f73b
particularly useful in VoIP or games, where not only a guarantee of consistent
Packit d3f73b
bandwidth is important, but also limiting the initial delay of a data stream. Note that
Packit d3f73b
it matters only for leaf classes (where the actual queues are) \- thus class
Packit d3f73b
hierarchy is ignored in the realtime case.
Packit d3f73b
Packit d3f73b
Feature \fB(2)\fR is well, obvious \- any algorithm featuring class hierarchy
Packit d3f73b
(such as HTB or CBQ) strives to achieve that. HFSC does that well, although
Packit d3f73b
you might end with unusual situations, if you define service curves carelessly
Packit d3f73b
\- see section CORNER CASES for examples.
Packit d3f73b
Packit d3f73b
Feature \fB(3)\fR is mentioned due to the nature of the problem. There may be
Packit d3f73b
situations where it's either not possible to guarantee service of all curves at
Packit d3f73b
the same time, and/or it's impossible to do so fairly. Both will be explained
Packit d3f73b
later. Note that this is mainly related to interior (aka aggregate) classes, as
Packit d3f73b
the leafs are already handled by \fB(1)\fR. Still, it's perfectly possible to
Packit d3f73b
create a leaf class without realtime service, and in such a case the caveats will
Packit d3f73b
naturally extend to leaf classes as well.
Packit d3f73b
Packit d3f73b
.SH ABBREVIATIONS
Packit d3f73b
For the remaining part of the document, we'll use following shortcuts:
Packit d3f73b
.nf
Packit d3f73b
.RS 4
Packit d3f73b
Packit d3f73b
RT \- realtime
Packit d3f73b
LS \- linkshare
Packit d3f73b
UL \- upperlimit
Packit d3f73b
SC \- service curve
Packit d3f73b
.fi
Packit d3f73b
.
Packit d3f73b
.SH "BASICS OF HFSC"
Packit d3f73b
.
Packit d3f73b
To understand how HFSC works, we must first introduce a service curve.
Packit d3f73b
Overall, it's a nondecreasing function of some time unit, returning the amount
Packit d3f73b
of
Packit d3f73b
service (an allowed or allocated amount of bandwidth) at some specific point in
Packit d3f73b
time. The purpose of it should be subconsciously obvious: if a class was
Packit d3f73b
allowed to transfer not less than the amount specified by its service curve,
Packit d3f73b
then the service curve is not violated.
Packit d3f73b
Packit d3f73b
Still, we need more elaborate criterion than just the above (although in
Packit d3f73b
the most generic case it can be reduced to it). The criterion has to take two
Packit d3f73b
things into account:
Packit d3f73b
.
Packit d3f73b
.RS 4
Packit d3f73b
.IP \(bu 4
Packit d3f73b
idling periods
Packit d3f73b
.IP \(bu
Packit d3f73b
the ability to "look back", so if during current active period the service curve is violated, maybe it
Packit d3f73b
isn't if we count excess bandwidth received during earlier active period(s)
Packit d3f73b
.RE
Packit d3f73b
.PP
Packit d3f73b
Let's define the criterion as follows:
Packit d3f73b
.RS 4
Packit d3f73b
.nf
Packit d3f73b
.IP "\fB(1)\fR" 4
Packit d3f73b
For each t1, there must exist t0 in set B, so S(t1\-t0)\~<=\~w(t0,t1)
Packit d3f73b
.fi
Packit d3f73b
.RE
Packit d3f73b
.
Packit d3f73b
.PP
Packit d3f73b
Here 'w' denotes the amount of service received during some time period between t0
Packit d3f73b
and t1. B is a set of all times, where a session becomes active after idling
Packit d3f73b
period (further denoted as 'becoming backlogged'). For a clearer picture,
Packit d3f73b
imagine two situations:
Packit d3f73b
.
Packit d3f73b
.RS 4
Packit d3f73b
.IP \fBa)\fR 4
Packit d3f73b
our session was active during two periods, with a small time gap between them
Packit d3f73b
.IP \fBb)\fR
Packit d3f73b
as in (a), but with a larger gap
Packit d3f73b
.RE
Packit d3f73b
.
Packit d3f73b
.PP
Packit d3f73b
Consider \fB(a)\fR: if the service received during both periods meets
Packit d3f73b
\fB(1)\fR, then all is well. But what if it doesn't do so during the 2nd
Packit d3f73b
period? If the amount of service received during the 1st period is larger
Packit d3f73b
than the service curve, then it might compensate for smaller service during
Packit d3f73b
the 2nd period \fIand\fR the gap \- if the gap is small enough.
Packit d3f73b
Packit d3f73b
If the gap is larger \fB(b)\fR \- then it's less likely to happen (unless the
Packit d3f73b
excess bandwidth allocated during the 1st part was really large). Still, the
Packit d3f73b
larger the gap \- the less interesting is what happened in the past (e.g. 10
Packit d3f73b
minutes ago) \- what matters is the current traffic that just started.
Packit d3f73b
Packit d3f73b
From HFSC's perspective, more interesting is answering the following question:
Packit d3f73b
when should we start transferring packets, so a service curve of a class is not
Packit d3f73b
violated. Or rephrasing it: How much X() amount of service should a session
Packit d3f73b
receive by time t, so the service curve is not violated. Function X() defined
Packit d3f73b
as below is the basic building block of HFSC, used in: eligible, deadline,
Packit d3f73b
virtual\-time and fit\-time curves. Of course, X() is based on equation
Packit d3f73b
\fB(1)\fR and is defined recursively:
Packit d3f73b
Packit d3f73b
.RS 4
Packit d3f73b
.IP \(bu 4
Packit d3f73b
At the 1st backlogged period beginning function X is initialized to generic
Packit d3f73b
service curve assigned to a class
Packit d3f73b
.IP \(bu
Packit d3f73b
At any subsequent backlogged period, X() is:
Packit d3f73b
.nf
Packit d3f73b
\fBmin(X() from previous period ; w(t0)+S(t\-t0) for t>=t0),\fR
Packit d3f73b
.fi
Packit d3f73b
\&... where t0 denotes the beginning of the current backlogged period.
Packit d3f73b
.RE
Packit d3f73b
.
Packit d3f73b
.PP
Packit d3f73b
HFSC uses either linear, or two\-piece linear service curves. In case of
Packit d3f73b
linear or two\-piece linear convex functions (first slope < second slope),
Packit d3f73b
min() in X's definition reduces to the 2nd argument. But in case of two\-piece
Packit d3f73b
concave functions, the 1st argument might quickly become lesser for some
Packit d3f73b
t>=t0. Note, that for some backlogged period, X() is defined only from that
Packit d3f73b
period's beginning. We also define X^(\-1)(w) as smallest t>=t0, for which
Packit d3f73b
X(t)\~=\~w. We have to define it this way, as X() is usually not an injection.
Packit d3f73b
Packit d3f73b
The above generic X() can be one of the following:
Packit d3f73b
.
Packit d3f73b
.RS 4
Packit d3f73b
.IP "E()" 4
Packit d3f73b
In realtime criterion, selects packets eligible for sending. If none are
Packit d3f73b
eligible, HFSC will use linkshare criterion. Eligible time \&'et' is calculated
Packit d3f73b
with reference to packets' heads ( et\~=\~E^(\-1)(w) ). It's based on RT
Packit d3f73b
service curve, \fIbut in case of a convex curve, uses its 2nd slope only.\fR
Packit d3f73b
.IP "D()"
Packit d3f73b
In realtime criterion, selects the most suitable packet from the ones chosen
Packit d3f73b
by E(). Deadline time \&'dt' corresponds to packets' tails
Packit d3f73b
(dt\~=\~D^(\-1)(w+l), where \&'l' is packet's length). Based on RT service
Packit d3f73b
curve.
Packit d3f73b
.IP "V()"
Packit d3f73b
In linkshare criterion, arbitrates which packet to send next. Note that V() is
Packit d3f73b
function of a virtual time \- see \fBLINKSHARE CRITERION\fR section for
Packit d3f73b
details. Virtual time \&'vt' corresponds to packets' heads
Packit d3f73b
(vt\~=\~V^(\-1)(w)). Based on LS service curve.
Packit d3f73b
.IP "F()"
Packit d3f73b
An extension to linkshare criterion, used to limit at which speed linkshare
Packit d3f73b
criterion is allowed to dequeue. Fit\-time 'ft' corresponds to packets' heads
Packit d3f73b
as well (ft\~=\~F^(\-1)(w)). Based on UL service curve.
Packit d3f73b
.RE
Packit d3f73b
Packit d3f73b
Be sure to make clean distinction between session's RT, LS and UL service
Packit d3f73b
curves and the above "utility" functions.
Packit d3f73b
.
Packit d3f73b
.SH "REALTIME CRITERION"
Packit d3f73b
.
Packit d3f73b
RT criterion \fIignores class hierarchy\fR and guarantees precise bandwidth and
Packit d3f73b
delay allocation. We say that a packet is eligible for sending, when the
Packit d3f73b
current real
Packit d3f73b
time is later than the eligible time of the packet. From all eligible packets, the one most
Packit d3f73b
suited for sending is the one with the shortest deadline time. This sounds
Packit d3f73b
simple, but consider the following example:
Packit d3f73b
Packit d3f73b
Interface 10Mbit, two classes, both with two\-piece linear service curves:
Packit d3f73b
.RS 4
Packit d3f73b
.IP \(bu 4
Packit d3f73b
1st class \- 2Mbit for 100ms, then 7Mbit (convex \- 1st slope < 2nd slope)
Packit d3f73b
.IP \(bu
Packit d3f73b
2nd class \- 7Mbit for 100ms, then 2Mbit (concave \- 1st slope > 2nd slope)
Packit d3f73b
.RE
Packit d3f73b
.PP
Packit d3f73b
Assume for a moment, that we only use D() for both finding eligible packets,
Packit d3f73b
and choosing the most fitting one, thus eligible time would be computed as
Packit d3f73b
D^(\-1)(w) and deadline time would be computed as D^(\-1)(w+l). If the 2nd
Packit d3f73b
class starts sending packets 1 second after the 1st class, it's of course
Packit d3f73b
impossible to guarantee 14Mbit, as the interface capability is only 10Mbit.
Packit d3f73b
The only workaround in this scenario is to allow the 1st class to send the
Packit d3f73b
packets earlier that would normally be allowed. That's where separate E() comes
Packit d3f73b
to help. Putting all the math aside (see HFSC paper for details), E() for RT
Packit d3f73b
concave service curve is just like D(), but for the RT convex service curve \-
Packit d3f73b
it's constructed using \fIonly\fR RT service curve's 2nd slope (in our example
Packit d3f73b
 7Mbit).
Packit d3f73b
Packit d3f73b
The effect of such E() \- packets will be sent earlier, and at the same time
Packit d3f73b
D() \fIwill\fR be updated \- so the current deadline time calculated from it
Packit d3f73b
will be later. Thus, when the 2nd class starts sending packets later, both
Packit d3f73b
the 1st and the 2nd class will be eligible, but the 2nd session's deadline
Packit d3f73b
time will be smaller and its packets will be sent first. When the 1st class
Packit d3f73b
becomes idle at some later point, the 2nd class will be able to "buffer" up
Packit d3f73b
again for later active period of the 1st class.
Packit d3f73b
Packit d3f73b
A short remark \- in a situation, where the total amount of bandwidth
Packit d3f73b
available on the interface is larger than the allocated total realtime parts
Packit d3f73b
(imagine a 10 Mbit interface, but 1Mbit/2Mbit and 2Mbit/1Mbit classes), the sole
Packit d3f73b
speed of the interface could suffice to guarantee the times.
Packit d3f73b
Packit d3f73b
Important part of RT criterion is that apart from updating its D() and E(),
Packit d3f73b
also V() used by LS criterion is updated. Generally the RT criterion is
Packit d3f73b
secondary to LS one, and used \fIonly\fR if there's a risk of violating precise
Packit d3f73b
realtime requirements. Still, the "participation" in bandwidth distributed by
Packit d3f73b
LS criterion is there, so V() has to be updated along the way. LS criterion can
Packit d3f73b
than properly compensate for non\-ideal fair sharing situation, caused by RT
Packit d3f73b
scheduling. If you use UL service curve its F() will be updated as well (UL
Packit d3f73b
service curve is an extension to LS one \- see \fBUPPERLIMIT CRITERION\fR
Packit d3f73b
section).
Packit d3f73b
Packit d3f73b
Anyway \- careless specification of LS and RT service curves can lead to
Packit d3f73b
potentially undesired situations (see CORNER CASES for examples). This wasn't
Packit d3f73b
the case in HFSC paper where LS and RT service curves couldn't be specified
Packit d3f73b
separately.
Packit d3f73b
Packit d3f73b
.SH "LINKSHARING CRITERION"
Packit d3f73b
.
Packit d3f73b
LS criterion's task is to distribute bandwidth according to specified class
Packit d3f73b
hierarchy. Contrary to RT criterion, there're no comparisons between current
Packit d3f73b
real time and virtual time \- the decision is based solely on direct comparison
Packit d3f73b
of virtual times of all active subclasses \- the one with the smallest vt wins
Packit d3f73b
and gets scheduled. One immediate conclusion from this fact is that absolute
Packit d3f73b
values don't matter \- only ratios between them (so for example, two children
Packit d3f73b
classes with simple linear 1Mbit service curves will get the same treatment
Packit d3f73b
from LS criterion's perspective, as if they were 5Mbit). The other conclusion
Packit d3f73b
is, that in perfectly fluid system with linear curves, all virtual times across
Packit d3f73b
whole class hierarchy would be equal.
Packit d3f73b
Packit d3f73b
Why is VC defined in term of virtual time (and what is it)?
Packit d3f73b
Packit d3f73b
Imagine an example: class A with two children \- A1 and A2, both with let's say
Packit d3f73b
10Mbit SCs. If A2 is idle, A1 receives all the bandwidth of A (and update its
Packit d3f73b
V() in the process). When A2 becomes active, A1's virtual time is already
Packit d3f73b
\fIfar\fR later than A2's one. Considering the type of decision made by LS
Packit d3f73b
criterion, A1 would become idle for a long time. We can workaround this
Packit d3f73b
situation by adjusting virtual time of the class becoming active \- we do that
Packit d3f73b
by getting such time "up to date". HFSC uses a mean of the smallest and the
Packit d3f73b
biggest virtual time of currently active children fit for sending. As it's not
Packit d3f73b
real time anymore (excluding trivial case of situation where all classes become
Packit d3f73b
active at the same time, and never become idle), it's called virtual time.
Packit d3f73b
Packit d3f73b
Such approach has its price though. The problem is analogous to what was
Packit d3f73b
presented in previous section and is caused by non\-linearity of service
Packit d3f73b
curves:
Packit d3f73b
.IP 1) 4
Packit d3f73b
either it's impossible to guarantee service curves and satisfy fairness
Packit d3f73b
during certain time periods:
Packit d3f73b
Packit d3f73b
.RS 4
Packit d3f73b
Recall the example from RT section, slightly modified (with 3Mbit slopes
Packit d3f73b
instead of 2Mbit ones):
Packit d3f73b
Packit d3f73b
.IP \(bu 4
Packit d3f73b
1st class \- 3Mbit for 100ms, then 7Mbit (convex \- 1st slope < 2nd slope)
Packit d3f73b
.IP \(bu
Packit d3f73b
2nd class \- 7Mbit for 100ms, then 3Mbit (concave \- 1st slope > 2nd slope)
Packit d3f73b
Packit d3f73b
.PP
Packit d3f73b
They sum up nicely to 10Mbit \- the interface's capacity. But if we wanted to only
Packit d3f73b
use LS for guarantees and fairness \- it simply won't work. In LS context,
Packit d3f73b
only V() is used for making decision which class to schedule. If the 2nd class
Packit d3f73b
becomes active when the 1st one is in its second slope, the fairness will be
Packit d3f73b
preserved \- ratio will be 1:1 (7Mbit:7Mbit), but LS itself is of course
Packit d3f73b
unable to guarantee the absolute values themselves \- as it would have to go
Packit d3f73b
beyond of what the interface is capable of.
Packit d3f73b
.RE
Packit d3f73b
Packit d3f73b
.IP 2) 4
Packit d3f73b
and/or it's impossible to guarantee service curves of all classes at the same
Packit d3f73b
time [fairly or not]:
Packit d3f73b
Packit d3f73b
.RS 4
Packit d3f73b
Packit d3f73b
This is similar to the above case, but a bit more subtle. We will consider two
Packit d3f73b
subtrees, arbitrated by their common (root here) parent:
Packit d3f73b
Packit d3f73b
.nf
Packit d3f73b
R (root) -\ 10Mbit
Packit d3f73b
Packit d3f73b
A  \- 7Mbit, then 3Mbit
Packit d3f73b
A1 \- 5Mbit, then 2Mbit
Packit d3f73b
A2 \- 2Mbit, then 1Mbit
Packit d3f73b
Packit d3f73b
B  \- 3Mbit, then 7Mbit
Packit d3f73b
.fi
Packit d3f73b
Packit d3f73b
R arbitrates between left subtree (A) and right (B). Assume that A2 and B are
Packit d3f73b
constantly backlogged, and at some later point A1 becomes backlogged (when all
Packit d3f73b
other classes are in their 2nd linear part).
Packit d3f73b
Packit d3f73b
What happens now? B (choice made by R) will \fIalways\fR get 7 Mbit as R is
Packit d3f73b
only (obviously) concerned with the ratio between its direct children. Thus A
Packit d3f73b
subtree gets 3Mbit, but its children would want (at the point when A1 became
Packit d3f73b
backlogged) 5Mbit + 1Mbit. That's of course impossible, as they can only get
Packit d3f73b
3Mbit due to interface limitation.
Packit d3f73b
Packit d3f73b
In the left subtree \- we have the same situation as previously (fair split
Packit d3f73b
between A1 and A2, but violated guarantees), but in the whole tree \- there's
Packit d3f73b
no fairness (B got 7Mbit, but A1 and A2 have to fit together in 3Mbit) and
Packit d3f73b
there's no guarantees for all classes (only B got what it wanted). Even if we
Packit d3f73b
violated fairness in the A subtree and set A2's service curve to 0, A1 would
Packit d3f73b
still not get the required bandwidth.
Packit d3f73b
.RE
Packit d3f73b
.
Packit d3f73b
.SH "UPPERLIMIT CRITERION"
Packit d3f73b
.
Packit d3f73b
UL criterion is an extensions to LS one, that permits sending packets only
Packit d3f73b
if current real time is later than fit\-time ('ft'). So the modified LS
Packit d3f73b
criterion becomes: choose the smallest virtual time from all active children,
Packit d3f73b
such that fit\-time < current real time also holds. Fit\-time is calculated
Packit d3f73b
from F(), which is based on UL service curve. As you can see, its role is
Packit d3f73b
kinda similar to E() used in RT criterion. Also, for obvious reasons \- you
Packit d3f73b
can't specify UL service curve without LS one.
Packit d3f73b
Packit d3f73b
The main purpose of the UL service curve is to limit HFSC to bandwidth available on the
Packit d3f73b
upstream router (think adsl home modem/router, and linux server as
Packit d3f73b
NAT/firewall/etc. with 100Mbit+ connection to mentioned modem/router).
Packit d3f73b
Typically, it's used to create a single class directly under root, setting
Packit d3f73b
a linear UL service curve to available bandwidth \- and then creating your class
Packit d3f73b
structure from that class downwards. Of course, you're free to add a UL service
Packit d3f73b
curve (linear or not) to any class with LS criterion.
Packit d3f73b
Packit d3f73b
An important part about the UL service curve is that whenever at some point in time
Packit d3f73b
a class doesn't qualify for linksharing due to its fit\-time, the next time it
Packit d3f73b
does qualify it will update its virtual time to the smallest virtual time of
Packit d3f73b
all active children fit for linksharing. This way, one of the main things the LS
Packit d3f73b
criterion tries to achieve \- equality of all virtual times across whole
Packit d3f73b
hierarchy \- is preserved (in perfectly fluid system with only linear curves,
Packit d3f73b
all virtual times would be equal).
Packit d3f73b
Packit d3f73b
Without that, 'vt' would lag behind other virtual times, and could cause
Packit d3f73b
problems. Consider an interface with a capacity of 10Mbit, and the following leaf classes
Packit d3f73b
(just in case you're skipping this text quickly \- this example shows behavior
Packit d3f73b
that \f(BIdoesn't happen\fR):
Packit d3f73b
Packit d3f73b
.nf
Packit d3f73b
A \- ls 5.0Mbit
Packit d3f73b
B \- ls 2.5Mbit
Packit d3f73b
C \- ls 2.5Mbit, ul 2.5Mbit
Packit d3f73b
.fi
Packit d3f73b
Packit d3f73b
If B was idle, while A and C were constantly backlogged, A and C would normally
Packit d3f73b
(as far as LS criterion is concerned) divide bandwidth in 2:1 ratio. But due
Packit d3f73b
to UL service curve in place, C would get at most 2.5Mbit, and A would get the
Packit d3f73b
remaining 7.5Mbit. The longer the backlogged period, the more the virtual times of
Packit d3f73b
A and C would drift apart. If B became backlogged at some later point in time,
Packit d3f73b
its virtual time would be set to (A's\~vt\~+\~C's\~vt)/2, thus blocking A from
Packit d3f73b
sending any traffic until B's virtual time catches up with A.
Packit d3f73b
.
Packit d3f73b
.SH "SEPARATE LS / RT SCs"
Packit d3f73b
.
Packit d3f73b
Another difference from the original HFSC paper is that RT and LS SCs can be
Packit d3f73b
specified separately. Moreover, leaf classes are allowed to have only either
Packit d3f73b
RT SC or LS SC. For interior classes, only LS SCs make sense: any RT SC will
Packit d3f73b
be ignored.
Packit d3f73b
.
Packit d3f73b
.SH "CORNER CASES"
Packit d3f73b
.
Packit d3f73b
Separate service curves for LS and RT criteria can lead to certain traps
Packit d3f73b
that come from "fighting" between ideal linksharing and enforced realtime
Packit d3f73b
guarantees. Those situations didn't exist in original HFSC paper, where
Packit d3f73b
specifying separate LS / RT service curves was not discussed.
Packit d3f73b
Packit d3f73b
Consider an interface with a 10Mbit capacity, with the following leaf classes:
Packit d3f73b
Packit d3f73b
.nf
Packit d3f73b
A \- ls 5.0Mbit, rt 8Mbit
Packit d3f73b
B \- ls 2.5Mbit
Packit d3f73b
C \- ls 2.5Mbit
Packit d3f73b
.fi
Packit d3f73b
Packit d3f73b
Imagine A and C are constantly backlogged. As B is idle, A and C would divide
Packit d3f73b
bandwidth in 2:1 ratio, considering LS service curve (so in theory \- 6.66 and
Packit d3f73b
3.33). Alas RT criterion takes priority, so A will get 8Mbit and LS will be
Packit d3f73b
able to compensate class C for only 2 Mbit \- this will cause discrepancy
Packit d3f73b
between virtual times of A and C.
Packit d3f73b
Packit d3f73b
Assume this situation lasts for a long time with no idle periods, and
Packit d3f73b
suddenly B becomes active. B's virtual time will be updated to
Packit d3f73b
(A's\~vt\~+\~C's\~vt)/2, effectively landing in the middle between A's and C's
Packit d3f73b
virtual time. The effect \- B, having no RT guarantees, will be punished and
Packit d3f73b
will not be allowed to transfer until C's virtual time catches up.
Packit d3f73b
Packit d3f73b
If the interface had a higher capacity, for example 100Mbit, this example
Packit d3f73b
would behave perfectly fine though.
Packit d3f73b
Packit d3f73b
Let's look a bit closer at the above example \- it "cleverly" invalidates one
Packit d3f73b
of the basic things LS criterion tries to achieve \- equality of all virtual
Packit d3f73b
times across class hierarchy. Leaf classes without RT service curves are
Packit d3f73b
literally left to their own fate (governed by messed up virtual times).
Packit d3f73b
Packit d3f73b
Also, it doesn't make much sense. Class A will always be guaranteed up to
Packit d3f73b
8Mbit, and this is more than any absolute bandwidth that could happen from its
Packit d3f73b
LS criterion (excluding trivial case of only A being active). If the bandwidth
Packit d3f73b
taken by A is smaller than absolute value from LS criterion, the unused part
Packit d3f73b
will be automatically assigned to other active classes (as A has idling periods
Packit d3f73b
in such case). The only "advantage" is, that even in case of low bandwidth on
Packit d3f73b
average, bursts would be handled at the speed defined by RT criterion. Still,
Packit d3f73b
if extra speed is needed (e.g. due to latency), non linear service curves
Packit d3f73b
should be used in such case.
Packit d3f73b
Packit d3f73b
In the other words: the LS criterion is meaningless in the above example.
Packit d3f73b
Packit d3f73b
You can quickly "workaround" it by making sure each leaf class has RT service
Packit d3f73b
curve assigned (thus guaranteeing all of them will get some bandwidth), but it
Packit d3f73b
doesn't make it any more valid.
Packit d3f73b
Packit d3f73b
Keep in mind - if you use nonlinear curves and irregularities explained above
Packit d3f73b
happen \fIonly\fR in the first segment, then there's little wrong with
Packit d3f73b
"overusing" RT curve a bit:
Packit d3f73b
Packit d3f73b
.nf
Packit d3f73b
A \- ls 5.0Mbit, rt 9Mbit/30ms, then 1Mbit
Packit d3f73b
B \- ls 2.5Mbit
Packit d3f73b
C \- ls 2.5Mbit
Packit d3f73b
.fi
Packit d3f73b
Packit d3f73b
Here, the vt of A will "spike" in the initial period, but then A will never get more
Packit d3f73b
than 1Mbit until B & C catch up. Then everything will be back to normal.
Packit d3f73b
.
Packit d3f73b
.SH "LINUX AND TIMER RESOLUTION"
Packit d3f73b
.
Packit d3f73b
In certain situations, the scheduler can throttle itself and setup so
Packit d3f73b
called watchdog to wakeup dequeue function at some time later. In case of HFSC
Packit d3f73b
it happens when for example no packet is eligible for scheduling, and UL
Packit d3f73b
service curve is used to limit the speed at which LS criterion is allowed to
Packit d3f73b
dequeue packets. It's called throttling, and accuracy of it is dependent on
Packit d3f73b
how the kernel is compiled.
Packit d3f73b
Packit d3f73b
There're 3 important options in modern kernels, as far as timers' resolution
Packit d3f73b
goes: \&'tickless system', \&'high resolution timer support' and \&'timer
Packit d3f73b
frequency'.
Packit d3f73b
Packit d3f73b
If you have \&'tickless system' enabled, then the timer interrupt will trigger
Packit d3f73b
as slowly as possible, but each time a scheduler throttles itself (or any
Packit d3f73b
other part of the kernel needs better accuracy), the rate will be increased as
Packit d3f73b
needed / possible. The ceiling is either \&'timer frequency' if \&'high
Packit d3f73b
resolution timer support' is not available or not compiled in, or it's
Packit d3f73b
hardware dependent and can go \fIfar\fR beyond the highest \&'timer frequency'
Packit d3f73b
setting available.
Packit d3f73b
Packit d3f73b
If \&'tickless system' is not enabled, the timer will trigger at a fixed rate
Packit d3f73b
specified by \&'timer frequency' \- regardless if high resolution timers are
Packit d3f73b
or aren't available.
Packit d3f73b
Packit d3f73b
This is important to keep those settings in mind, as in scenario like: no
Packit d3f73b
tickless, no HR timers, frequency set to 100hz \- throttling accuracy would be
Packit d3f73b
at 10ms. It doesn't automatically mean you would be limited to ~0.8Mbit/s
Packit d3f73b
(assuming packets at ~1KB) \- as long as your queues are prepared to cover for
Packit d3f73b
timer inaccuracy. Of course, in case of e.g. locally generated UDP traffic \-
Packit d3f73b
appropriate socket size is needed as well. Short example to make it more
Packit d3f73b
understandable (assume hardcore anti\-schedule settings \- HZ=100, no HR
Packit d3f73b
timers, no tickless):
Packit d3f73b
Packit d3f73b
.nf
Packit d3f73b
tc qdisc add dev eth0 root handle 1:0 hfsc default 1
Packit d3f73b
tc class add dev eth0 parent 1:0 classid 1:1 hfsc rt m2 10Mbit
Packit d3f73b
.fi
Packit d3f73b
Packit d3f73b
Assuming packet of ~1KB size and HZ=100, that averages to ~0.8Mbit \- anything
Packit d3f73b
beyond it (e.g. the above example with specified rate over 10x larger) will
Packit d3f73b
require appropriate queuing and cause bursts every ~10 ms. As you can
Packit d3f73b
imagine, any HFSC's RT guarantees will be seriously invalidated by that.
Packit d3f73b
Aforementioned example is mainly important if you deal with old hardware \- as
Packit d3f73b
is particularly popular for home server chores. Even then, you can easily
Packit d3f73b
set HZ=1000 and have very accurate scheduling for typical adsl speeds.
Packit d3f73b
Packit d3f73b
Anything modern (apic or even hpet msi based timers + \&'tickless system')
Packit d3f73b
will provide enough accuracy for superb 1Gbit scheduling. For example, on one
Packit d3f73b
of my cheap dual-core AMD boards I have the following settings:
Packit d3f73b
Packit d3f73b
.nf
Packit d3f73b
tc qdisc add dev eth0 parent root handle 1:0 hfsc default 1
Packit d3f73b
tc class add dev eth0 parent 1:0 classid 1:1 hfsc rt m2 300mbit
Packit d3f73b
.fi
Packit d3f73b
Packit d3f73b
And a simple:
Packit d3f73b
Packit d3f73b
.nf
Packit d3f73b
nc \-u dst.host.com 54321 
Packit d3f73b
nc \-l \-p 54321 >/dev/null
Packit d3f73b
.fi
Packit d3f73b
Packit d3f73b
\&...will yield the following effects over a period of ~10 seconds (taken from
Packit d3f73b
/proc/interrupts):
Packit d3f73b
Packit d3f73b
.nf
Packit d3f73b
319: 42124229   0  HPET_MSI\-edge  hpet2 (before)
Packit d3f73b
319: 42436214   0  HPET_MSI\-edge  hpet2 (after 10s.)
Packit d3f73b
.fi
Packit d3f73b
Packit d3f73b
That's roughly 31000/s. Now compare it with HZ=1000 setting. The obvious
Packit d3f73b
drawback of it is that cpu load can be rather high with servicing that
Packit d3f73b
many timer interrupts. The example with 300Mbit RT service curve on 1Gbit link is
Packit d3f73b
particularly ugly, as it requires a lot of throttling with minuscule delays.
Packit d3f73b
Packit d3f73b
Also note that it's just an example showing the capabilities of current hardware.
Packit d3f73b
The above example (essentially a 300Mbit TBF emulator) is pointless on an internal
Packit d3f73b
interface to begin with: you will pretty much always want a regular LS service
Packit d3f73b
curve there, and in such a scenario HFSC simply doesn't throttle at all.
Packit d3f73b
Packit d3f73b
300Mbit RT service curve (selected columns from mpstat \-P ALL 1):
Packit d3f73b
Packit d3f73b
.nf
Packit d3f73b
10:56:43 PM  CPU  %sys     %irq   %soft   %idle
Packit d3f73b
10:56:44 PM  all  20.10    6.53   34.67   37.19
Packit d3f73b
10:56:44 PM    0  35.00    0.00   63.00    0.00
Packit d3f73b
10:56:44 PM    1   4.95   12.87    6.93   73.27
Packit d3f73b
.fi
Packit d3f73b
Packit d3f73b
So, in the rare case you need those speeds with only a RT service curve, or with a UL
Packit d3f73b
service curve: remember the drawbacks.
Packit d3f73b
.
Packit d3f73b
.SH "CAVEAT: RANDOM ONLINE EXAMPLES"
Packit d3f73b
.
Packit d3f73b
For reasons unknown (though well guessed), many examples you can google love to
Packit d3f73b
overuse UL criterion and stuff it in every node possible. This makes no sense
Packit d3f73b
and works against what HFSC tries to do (and does pretty damn well). Use UL
Packit d3f73b
where it makes sense: on the uppermost node to match upstream router's uplink
Packit d3f73b
capacity. Or in special cases, such as testing (limit certain subtree to some
Packit d3f73b
speed), or customers that must never get more than certain speed. In the last
Packit d3f73b
case you can usually achieve the same by just using a RT criterion without LS+UL
Packit d3f73b
on leaf nodes.
Packit d3f73b
Packit d3f73b
As for the router case - remember it's good to differentiate between "traffic to
Packit d3f73b
router" (remote console, web config, etc.) and "outgoing traffic", so for
Packit d3f73b
example:
Packit d3f73b
Packit d3f73b
.nf
Packit d3f73b
tc qdisc add dev eth0 root handle 1:0 hfsc default 0x8002
Packit d3f73b
tc class add dev eth0 parent 1:0 classid 1:999 hfsc rt m2 50Mbit
Packit d3f73b
tc class add dev eth0 parent 1:0 classid 1:1 hfsc ls m2 2Mbit ul m2 2Mbit
Packit d3f73b
.fi
Packit d3f73b
Packit d3f73b
\&... so "internet" tree under 1:1 and "router itself" as 1:999
Packit d3f73b
.
Packit d3f73b
.SH "LAYER2 ADAPTATION"
Packit d3f73b
.
Packit d3f73b
Please refer to \fBtc\-stab\fR(8)
Packit d3f73b
.
Packit d3f73b
.SH "SEE ALSO"
Packit d3f73b
.
Packit d3f73b
\fBtc\fR(8), \fBtc\-hfsc\fR(8), \fBtc\-stab\fR(8)
Packit d3f73b
Packit d3f73b
Please direct bugreports and patches to: <netdev@vger.kernel.org>
Packit d3f73b
.
Packit d3f73b
.SH "AUTHOR"
Packit d3f73b
.
Packit d3f73b
Manpage created by Michal Soltys (soltys@ziu.info)