Home | History | Annotate | only in /external/iproute2/tc
Up to higher level directory
NameDateSize
Android.mk09-Oct-2013540
em_cmp.c09-Oct-20134.6K
em_meta.c09-Oct-201312.6K
em_nbyte.c09-Oct-20133.5K
em_u32.c09-Oct-20134K
emp_ematch.l09-Oct-20133.3K
emp_ematch.y09-Oct-20131.2K
f_basic.c09-Oct-20133.4K
f_cgroup.c09-Oct-20132.6K
f_flow.c09-Oct-20138.5K
f_fw.c09-Oct-20133.8K
f_route.c09-Oct-20134.2K
f_rsvp.c09-Oct-201310.1K
f_tcindex.c09-Oct-20134K
f_u32.c09-Oct-201327.9K
m_action.c09-Oct-201313.4K
m_ematch.c09-Oct-201310.8K
m_ematch.h09-Oct-20132K
m_estimator.c09-Oct-20131.7K
m_gact.c09-Oct-20135.2K
m_ipt.c09-Oct-201312.8K
m_mirred.c09-Oct-20136K
m_nat.c09-Oct-20134K
m_pedit.c09-Oct-201311.8K
m_pedit.h09-Oct-20132K
m_police.c09-Oct-20139K
m_skbedit.c09-Oct-20134.9K
m_xt.c09-Oct-20137.4K
m_xt_old.c09-Oct-20139.6K
Makefile09-Oct-20133.1K
MODULE_LICENSE_GPL09-Oct-20130
NOTICE09-Oct-201317.6K
p_icmp.c09-Oct-20131.1K
p_ip.c09-Oct-20133.4K
p_tcp.c09-Oct-2013810
p_udp.c09-Oct-2013810
q_atm.c09-Oct-20135.5K
q_cbq.c09-Oct-201314.8K
q_drr.c09-Oct-20132.5K
q_dsmark.c09-Oct-20133.8K
q_fifo.c09-Oct-20132.2K
q_gred.c09-Oct-20137.8K
q_hfsc.c09-Oct-20138.4K
q_htb.c09-Oct-20139.3K
q_ingress.c09-Oct-20131.4K
q_multiq.c09-Oct-20132K
q_netem.c09-Oct-20139.1K
q_prio.c09-Oct-20132.9K
q_red.c09-Oct-20134.9K
q_rr.c09-Oct-20132.8K
q_sfq.c09-Oct-20132.7K
q_tbf.c09-Oct-20137.1K
README.last09-Oct-20131.5K
static-syms.c09-Oct-201393
tc.c09-Oct-20137.4K
tc_cbq.c09-Oct-20131.5K
tc_cbq.h09-Oct-2013283
tc_class.c09-Oct-20138.3K
tc_common.h09-Oct-2013979
tc_core.c09-Oct-20134.4K
tc_core.h09-Oct-2013894
tc_estimator.c09-Oct-20131.1K
tc_filter.c09-Oct-20139.4K
tc_monitor.c09-Oct-20132.3K
tc_qdisc.c09-Oct-20139.1K
tc_red.c09-Oct-20131.8K
tc_red.h09-Oct-2013289
tc_stab.c09-Oct-20133.8K
tc_util.c09-Oct-201311.8K
tc_util.h09-Oct-20133.9K

README.last

      1 Kernel code and interface.
      2 --------------------------
      3 
      4 * Compile time switches
      5 
      6 There is only one, but very important, compile time switch.
      7 It is not settable by "make config", but should be selected
      8 manually and after a bit of thinking in <include/net/pkt_sched.h>
      9 
     10 PSCHED_CLOCK_SOURCE can take three values:
     11 
     12 	PSCHED_GETTIMEOFDAY
     13 	PSCHED_JIFFIES
     14 	PSCHED_CPU
     15 
     16 
     17  PSCHED_GETTIMEOFDAY
     18 
     19 Default setting is the most conservative PSCHED_GETTIMEOFDAY.
     20 It is very slow both because of weird slowness of do_gettimeofday()
     21 and because it forces code to use unnatural "timeval" format,
     22 where microseconds and seconds fields are separate.
     23 Besides that, it will misbehave, when delays exceed 2 seconds
     24 (f.e. very slow links or classes bounded to small slice of bandwidth)
     25 To resume: as only you will get it working, select correct clock
     26 source and forget about PSCHED_GETTIMEOFDAY forever.
     27 
     28 
     29  PSCHED_JIFFIES
     30 
     31 Clock is derived from jiffies. On architectures with HZ=100
     32 granularity of this clock is not enough to make reasonable
     33 bindings to real time. However, taking into account Linux
     34 architecture problems, which force us to use artificial
     35 integrated clock in any case, this switch is not so bad
     36 for schduling even on high speed networks, though policing
     37 is not reliable.
     38 
     39 
     40  PSCHED_CPU
     41 
     42 It is available only for alpha and pentiums with correct
     43 CPU timestamp. It is the fastest way, use it when it is available,
     44 but remember: not all pentiums have this facility, and
     45 a lot of them have clock, broken by APM etc. etc.
     46 
     47 
     48