Linux网络调度程序(tc qdisc)中的术语POLICED是以什么命名的?

时间:2012-03-05 16:10:51

标签: linux-kernel trafficshaping

POLICED意味着入口数据包的速度将受到限制,超出的数据包将被丢弃。

我在include / linux / netdevice.h中看到了一条评论“skb是由警察开枪的”。

这当然是相似的,但这个名字背后有什么故事吗?

1 个答案:

答案 0 :(得分:0)

是 -

http://lxr.linux.no/#linux+v3.2.9/net/sched/Kconfig

menuconfig NET_SCHED
        bool "QoS and/or fair queueing"
        select NET_SCH_FIFO
        ---help---
          When the kernel has several packets to send out over a network
          device, it has to decide which ones to send first, which ones to
          delay, and which ones to drop. This is the job of the queueing
          disciplines, several different algorithms for how to do this
          "fairly" have been proposed.
...
config NET_ACT_POLICE
        tristate "Traffic Policing"
        depends on NET_CLS_ACT 
        ---help---
          Say Y here if you want to do traffic policing, i.e. strict
          bandwidth limiting. This action replaces the existing policing
          module.

          To compile this code as a module, choose M here: the
          module will be called act_police.