Home | History | Annotate | only in /external/iproute2/tc
Up to higher level directory
NameDateSize
Android.mk21-Aug-2018756
e_bpf.c21-Aug-20184.2K
em_canid.c21-Aug-20185.3K
em_cmp.c21-Aug-20184.6K
em_ipset.c21-Aug-20186.1K
em_meta.c21-Aug-201812.6K
em_nbyte.c21-Aug-20183.4K
em_u32.c21-Aug-20183.9K
emp_ematch.l21-Aug-20183.3K
emp_ematch.y21-Aug-20181.2K
f_basic.c21-Aug-20183.5K
f_bpf.c21-Aug-20186.7K
f_cgroup.c21-Aug-20182.6K
f_flow.c21-Aug-20188.5K
f_flower.c21-Aug-201832.6K
f_fw.c21-Aug-20184.1K
f_matchall.c21-Aug-20183.8K
f_route.c21-Aug-20184.5K
f_rsvp.c21-Aug-201810.3K
f_tcindex.c21-Aug-20184.3K
f_u32.c21-Aug-201828.5K
m_action.c21-Aug-201815.9K
m_bpf.c21-Aug-20185.4K
m_connmark.c21-Aug-20183.1K
m_csum.c21-Aug-20184.9K
m_ematch.c21-Aug-201810.8K
m_ematch.h21-Aug-20182.1K
m_estimator.c21-Aug-20181.7K
m_gact.c21-Aug-20184.7K
m_ife.c21-Aug-20188.1K
m_ipt.c21-Aug-201810.6K
m_mirred.c21-Aug-20186K
m_nat.c21-Aug-20183.5K
m_pedit.c21-Aug-201816.7K
m_pedit.h21-Aug-20182.5K
m_police.c21-Aug-20188.4K
m_sample.c21-Aug-20184.3K
m_simple.c21-Aug-20185.4K
m_skbedit.c21-Aug-20185.7K
m_skbmod.c21-Aug-20185.4K
m_tunnel_key.c21-Aug-20187K
m_vlan.c21-Aug-20185.9K
m_xt.c21-Aug-20188.4K
m_xt_old.c21-Aug-20189.2K
Makefile21-Aug-20184.2K
MODULE_LICENSE_GPL21-Aug-20180
NOTICE21-Aug-201817.6K
p_eth.c21-Aug-20181.4K
p_icmp.c21-Aug-20181.1K
p_ip.c21-Aug-20183.7K
p_ip6.c21-Aug-20181.8K
p_tcp.c21-Aug-20181.4K
p_udp.c21-Aug-20181.3K
q_atm.c21-Aug-20185.5K
q_cbq.c21-Aug-201814.9K
q_choke.c21-Aug-20185.5K
q_clsact.c21-Aug-2018587
q_codel.c21-Aug-20186.5K
q_drr.c21-Aug-20182.5K
q_dsmark.c21-Aug-20183.7K
q_fifo.c21-Aug-20182.2K
q_fq.c21-Aug-201810.5K
q_fq_codel.c21-Aug-20188.6K
q_gred.c21-Aug-20189.1K
q_hfsc.c21-Aug-20188.4K
q_hhf.c21-Aug-20185.6K
q_htb.c21-Aug-201810.3K
q_ingress.c21-Aug-20181.1K
q_mqprio.c21-Aug-20183K
q_multiq.c21-Aug-20181.9K
q_netem.c21-Aug-201816.3K
q_pie.c21-Aug-20185.6K
q_prio.c21-Aug-20182.8K
q_qfq.c21-Aug-20182.4K
q_red.c21-Aug-20185.9K
q_rr.c21-Aug-20182.8K
q_sfb.c21-Aug-20184.9K
q_sfq.c21-Aug-20187.1K
q_tbf.c21-Aug-20188.8K
README.last21-Aug-20181.5K
static-syms.c21-Aug-2018248
tc.c21-Aug-20188.2K
tc_cbq.c21-Aug-20181.5K
tc_cbq.h21-Aug-2018283
tc_class.c21-Aug-201811.7K
tc_common.h21-Aug-20181K
tc_core.c21-Aug-20185.1K
tc_core.h21-Aug-2018888
tc_estimator.c21-Aug-20181.1K
tc_exec.c21-Aug-20182.1K
tc_filter.c21-Aug-201816.2K
tc_monitor.c21-Aug-20182.5K
tc_qdisc.c21-Aug-201810K
tc_red.c21-Aug-20181.9K
tc_red.h21-Aug-2018289
tc_stab.c21-Aug-20183.7K
tc_util.c21-Aug-201817.3K
tc_util.h21-Aug-20184.2K

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