Home | History | Annotate | only in /external/iproute2/tc
Up to higher level directory
NameDateSize
.gitignore05-Oct-201738
Android.mk05-Oct-2017739
e_bpf.c05-Oct-20174.3K
em_canid.c05-Oct-20175.4K
em_cmp.c05-Oct-20174.6K
em_ipset.c05-Oct-20176.3K
em_meta.c05-Oct-201712.6K
em_nbyte.c05-Oct-20173.5K
em_u32.c05-Oct-20174K
emp_ematch.l05-Oct-20173.3K
emp_ematch.y05-Oct-20171.2K
f_basic.c05-Oct-20173.5K
f_bpf.c05-Oct-20175.5K
f_cgroup.c05-Oct-20172.6K
f_flow.c05-Oct-20178.5K
f_flower.c05-Oct-201712.8K
f_fw.c05-Oct-20173.8K
f_route.c05-Oct-20174.5K
f_rsvp.c05-Oct-201710.4K
f_tcindex.c05-Oct-20174.2K
f_u32.c05-Oct-201728K
m_action.c05-Oct-201713.9K
m_bpf.c05-Oct-20175.4K
m_connmark.c05-Oct-20173.5K
m_csum.c05-Oct-20175.2K
m_ematch.c05-Oct-201710.8K
m_ematch.h05-Oct-20172.1K
m_estimator.c05-Oct-20171.7K
m_gact.c05-Oct-20175.2K
m_ipt.c05-Oct-201712.8K
m_mirred.c05-Oct-20176.1K
m_nat.c05-Oct-20174K
m_pedit.c05-Oct-201711.5K
m_pedit.h05-Oct-20172K
m_police.c05-Oct-20179.1K
m_simple.c05-Oct-20175.2K
m_skbedit.c05-Oct-20174.9K
m_vlan.c05-Oct-20175K
m_xt.c05-Oct-20178.4K
m_xt_old.c05-Oct-20179.5K
Makefile05-Oct-20174K
MODULE_LICENSE_GPL05-Oct-20170
NOTICE05-Oct-201717.6K
p_icmp.c05-Oct-20171.1K
p_ip.c05-Oct-20173.4K
p_tcp.c05-Oct-2017808
p_udp.c05-Oct-2017809
q_atm.c05-Oct-20175.5K
q_cbq.c05-Oct-201715K
q_choke.c05-Oct-20175.6K
q_clsact.c05-Oct-2017630
q_codel.c05-Oct-20176.5K
q_drr.c05-Oct-20172.5K
q_dsmark.c05-Oct-20173.7K
q_fifo.c05-Oct-20172.2K
q_fq.c05-Oct-20179.7K
q_fq_codel.c05-Oct-20177.8K
q_gred.c05-Oct-20179.1K
q_hfsc.c05-Oct-20178.6K
q_hhf.c05-Oct-20175.5K
q_htb.c05-Oct-201710.5K
q_ingress.c05-Oct-20171.1K
q_mqprio.c05-Oct-20172.9K
q_multiq.c05-Oct-20171.9K
q_netem.c05-Oct-201716.4K
q_pie.c05-Oct-20175.7K
q_prio.c05-Oct-20172.8K
q_qfq.c05-Oct-20172.5K
q_red.c05-Oct-20175.9K
q_rr.c05-Oct-20172.8K
q_sfb.c05-Oct-20174.9K
q_sfq.c05-Oct-20177.1K
q_tbf.c05-Oct-20178.9K
README.last05-Oct-20171.5K
static-syms.c05-Oct-2017248
tc.c05-Oct-20178.4K
tc_bpf.c05-Oct-201741K
tc_bpf.h05-Oct-20171.9K
tc_cbq.c05-Oct-20171.5K
tc_cbq.h05-Oct-2017283
tc_class.c05-Oct-201711.9K
tc_common.h05-Oct-20171K
tc_core.c05-Oct-20175K
tc_core.h05-Oct-2017888
tc_estimator.c05-Oct-20171.1K
tc_exec.c05-Oct-20172.1K
tc_filter.c05-Oct-201710.5K
tc_monitor.c05-Oct-20172.5K
tc_qdisc.c05-Oct-20179.5K
tc_red.c05-Oct-20171.8K
tc_red.h05-Oct-2017289
tc_stab.c05-Oct-20173.7K
tc_util.c05-Oct-201712.5K
tc_util.h05-Oct-20174K

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