Home | History | Annotate | only in /external/iproute2/tc
Up to higher level directory
NameDateSize
.gitignore24-Aug-201638
Android.mk24-Aug-2016739
e_bpf.c24-Aug-20164.3K
em_canid.c24-Aug-20165.4K
em_cmp.c24-Aug-20164.6K
em_ipset.c24-Aug-20166.3K
em_meta.c24-Aug-201612.6K
em_nbyte.c24-Aug-20163.5K
em_u32.c24-Aug-20164K
emp_ematch.l24-Aug-20163.3K
emp_ematch.y24-Aug-20161.2K
f_basic.c24-Aug-20163.5K
f_bpf.c24-Aug-20165.5K
f_cgroup.c24-Aug-20162.6K
f_flow.c24-Aug-20168.5K
f_flower.c24-Aug-201612.8K
f_fw.c24-Aug-20163.8K
f_route.c24-Aug-20164.5K
f_rsvp.c24-Aug-201610.4K
f_tcindex.c24-Aug-20164.2K
f_u32.c24-Aug-201628K
m_action.c24-Aug-201613.9K
m_bpf.c24-Aug-20165.4K
m_connmark.c24-Aug-20163.5K
m_csum.c24-Aug-20165.2K
m_ematch.c24-Aug-201610.8K
m_ematch.h24-Aug-20162.1K
m_estimator.c24-Aug-20161.7K
m_gact.c24-Aug-20165.2K
m_ipt.c24-Aug-201612.8K
m_mirred.c24-Aug-20166.1K
m_nat.c24-Aug-20164K
m_pedit.c24-Aug-201611.5K
m_pedit.h24-Aug-20162K
m_police.c24-Aug-20169.1K
m_simple.c24-Aug-20165.2K
m_skbedit.c24-Aug-20164.9K
m_vlan.c24-Aug-20165K
m_xt.c24-Aug-20168.4K
m_xt_old.c24-Aug-20169.5K
Makefile24-Aug-20164K
MODULE_LICENSE_GPL24-Aug-20160
NOTICE24-Aug-201617.6K
p_icmp.c24-Aug-20161.1K
p_ip.c24-Aug-20163.4K
p_tcp.c24-Aug-2016808
p_udp.c24-Aug-2016809
q_atm.c24-Aug-20165.5K
q_cbq.c24-Aug-201615K
q_choke.c24-Aug-20165.6K
q_clsact.c24-Aug-2016630
q_codel.c24-Aug-20166.5K
q_drr.c24-Aug-20162.5K
q_dsmark.c24-Aug-20163.7K
q_fifo.c24-Aug-20162.2K
q_fq.c24-Aug-20169.7K
q_fq_codel.c24-Aug-20167.8K
q_gred.c24-Aug-20169.1K
q_hfsc.c24-Aug-20168.6K
q_hhf.c24-Aug-20165.5K
q_htb.c24-Aug-201610.5K
q_ingress.c24-Aug-20161.1K
q_mqprio.c24-Aug-20162.9K
q_multiq.c24-Aug-20161.9K
q_netem.c24-Aug-201616.4K
q_pie.c24-Aug-20165.7K
q_prio.c24-Aug-20162.8K
q_qfq.c24-Aug-20162.5K
q_red.c24-Aug-20165.9K
q_rr.c24-Aug-20162.8K
q_sfb.c24-Aug-20164.9K
q_sfq.c24-Aug-20167.1K
q_tbf.c24-Aug-20168.9K
README.last24-Aug-20161.5K
static-syms.c24-Aug-2016248
tc.c24-Aug-20168.4K
tc_bpf.c24-Aug-201641K
tc_bpf.h24-Aug-20161.9K
tc_cbq.c24-Aug-20161.5K
tc_cbq.h24-Aug-2016283
tc_class.c24-Aug-201611.9K
tc_common.h24-Aug-20161K
tc_core.c24-Aug-20165K
tc_core.h24-Aug-2016888
tc_estimator.c24-Aug-20161.1K
tc_exec.c24-Aug-20162.1K
tc_filter.c24-Aug-201610.5K
tc_monitor.c24-Aug-20162.5K
tc_qdisc.c24-Aug-20169.5K
tc_red.c24-Aug-20161.8K
tc_red.h24-Aug-2016289
tc_stab.c24-Aug-20163.7K
tc_util.c24-Aug-201612.5K
tc_util.h24-Aug-20164K

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