mirror_iproute2/tc
osdl.net!shemminger b7be3d0cd2 Cleanup cli for new version.
2004/08/09 16:46:47-07:00 osdl.net!shemminger
Add distribution table loading (undebugged as yet).

(Logical change 1.71)
2004-08-23 20:21:21 +00:00
..
f_fw.c add action 2004-08-13 23:54:55 +00:00
f_route.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
f_rsvp.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
f_tcindex.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
f_u32.c Import patch jamal-p1 2004-08-23 20:20:41 +00:00
m_action.c Import patch jamal-p1 2004-08-23 20:20:41 +00:00
m_estimator.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
m_police.c new stuff from jamal. 2004-08-13 23:54:55 +00:00
Makefile Auto merged 2004-08-23 20:21:21 +00:00
normal.c Allow variable tablesize. 2004-08-23 20:21:21 +00:00
pareto.c Allow variable tablesize. 2004-08-23 20:21:21 +00:00
paretonormal.c Allow variable tablesize. 2004-08-23 20:21:21 +00:00
q_atm.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
q_cbq.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
q_csz.c Get rid of warnings from unused funcs. 2004-06-09 21:30:36 +00:00
q_dsmark.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
q_fifo.c Print pfifo status 2004-06-02 20:22:08 +00:00
q_gred.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
q_hfsc.c Import patch hfsc-sc 2004-08-23 20:17:40 +00:00
q_hpfq.c Get rid of warnings from unused funcs. 2004-06-09 21:30:36 +00:00
q_htb.c mpu support 2004-07-30 20:26:15 +00:00
q_ingress.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
q_netem.c Cleanup cli for new version. 2004-08-23 20:21:21 +00:00
q_prio.c Print pfifo status 2004-06-02 20:22:08 +00:00
q_red.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
q_sfq.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
q_tbf.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
README.last (Logical change 1.3) 2004-04-15 20:56:59 +00:00
tc_cbq.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
tc_cbq.h (Logical change 1.3) 2004-04-15 20:56:59 +00:00
tc_class.c Import patch jamal-p1 2004-08-23 20:20:41 +00:00
tc_common.h Auto merged 2004-08-23 20:21:21 +00:00
tc_core.c Adds mpu support to HTB (ATM) queueing discipline 2004-07-30 20:26:15 +00:00
tc_core.h (Logical change 1.3) 2004-04-15 20:56:59 +00:00
tc_estimator.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
tc_filter.c Import patch jamal-p1 2004-08-23 20:20:41 +00:00
tc_qdisc.c Auto merged 2004-08-23 20:21:21 +00:00
tc_red.c (Logical change 1.3) 2004-04-15 20:56:59 +00:00
tc_red.h (Logical change 1.3) 2004-04-15 20:56:59 +00:00
tc_util.c new stuff from jamal. 2004-08-13 23:54:55 +00:00
tc_util.h new stuff from jamal. 2004-08-13 23:54:55 +00:00
tc.c new stuff from jamal. 2004-08-13 23:54:55 +00:00

Kernel code and interface.
--------------------------

* Compile time switches

There is only one, but very important, compile time switch.
It is not settable by "make config", but should be selected
manually and after a bit of thinking in <include/net/pkt_sched.h>

PSCHED_CLOCK_SOURCE can take three values:

	PSCHED_GETTIMEOFDAY
	PSCHED_JIFFIES
	PSCHED_CPU


 PSCHED_GETTIMEOFDAY

Default setting is the most conservative PSCHED_GETTIMEOFDAY.
It is very slow both because of weird slowness of do_gettimeofday()
and because it forces code to use unnatural "timeval" format,
where microseconds and seconds fields are separate.
Besides that, it will misbehave, when delays exceed 2 seconds
(f.e. very slow links or classes bounded to small slice of bandwidth)
To resume: as only you will get it working, select correct clock
source and forget about PSCHED_GETTIMEOFDAY forever.


 PSCHED_JIFFIES

Clock is derived from jiffies. On architectures with HZ=100
granularity of this clock is not enough to make reasonable
bindings to real time. However, taking into account Linux
architecture problems, which force us to use artificial
integrated clock in any case, this switch is not so bad
for schduling even on high speed networks, though policing
is not reliable.


 PSCHED_CPU

It is available only for alpha and pentiums with correct
CPU timestamp. It is the fastest way, use it when it is available,
but remember: not all pentiums have this facility, and
a lot of them have clock, broken by APM etc. etc.