diff options
Diffstat (limited to 'net/sched/Kconfig')
-rw-r--r-- | net/sched/Kconfig | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/net/sched/Kconfig b/net/sched/Kconfig index 3d1d902dd1a1..b0941186f867 100644 --- a/net/sched/Kconfig +++ b/net/sched/Kconfig | |||
@@ -185,7 +185,7 @@ config NET_SCH_GRED | |||
185 | depends on NET_SCHED | 185 | depends on NET_SCHED |
186 | help | 186 | help |
187 | Say Y here if you want to use the Generic Random Early Detection | 187 | Say Y here if you want to use the Generic Random Early Detection |
188 | (RED) packet scheduling algorithm for some of your network devices | 188 | (GRED) packet scheduling algorithm for some of your network devices |
189 | (see the top of <file:net/sched/sch_red.c> for details and | 189 | (see the top of <file:net/sched/sch_red.c> for details and |
190 | references about the algorithm). | 190 | references about the algorithm). |
191 | 191 | ||
@@ -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 | |||