diff options
author | Jamal Hadi Salim <hadi@cyberus.ca> | 2005-04-24 23:10:16 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-04-24 23:10:16 -0400 |
commit | db7530797992bb2be703f9f3cc69b1a578f812f8 (patch) | |
tree | 741ca281d2acb1f5a62df20ccda4ad294b57347b /net/sched/Kconfig | |
parent | ac6910e189471e6b46ecea59e7620b083329ad4f (diff) |
[PKT_SCHED]: Introduce simple actions.
And provide an example simply action in order to
demonstrate usage.
Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/Kconfig')
-rw-r--r-- | net/sched/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/sched/Kconfig b/net/sched/Kconfig index 3d1d902dd1a1..9c118baed9dc 100644 --- a/net/sched/Kconfig +++ b/net/sched/Kconfig | |||
@@ -506,3 +506,13 @@ config NET_CLS_POLICE | |||
506 | Say Y to support traffic policing (bandwidth limits). Needed for | 506 | Say Y to support traffic policing (bandwidth limits). Needed for |
507 | ingress and egress rate limiting. | 507 | ingress and egress rate limiting. |
508 | 508 | ||
509 | config NET_ACT_SIMP | ||
510 | tristate "Simple action" | ||
511 | depends on NET_CLS_ACT | ||
512 | ---help--- | ||
513 | You must have new iproute2 to use this feature. | ||
514 | This adds a very simple action for demonstration purposes | ||
515 | The idea is to give action authors a basic example to look at. | ||
516 | All this action will do is print on the console the configured | ||
517 | policy string followed by _ then packet count. | ||
518 | |||