diff options
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/Kconfig | 4 | ||||
-rw-r--r-- | net/sched/Makefile | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/net/sched/Kconfig b/net/sched/Kconfig index b2437092978c..f4544dd86476 100644 --- a/net/sched/Kconfig +++ b/net/sched/Kconfig | |||
@@ -6,6 +6,7 @@ menu "QoS and/or fair queueing" | |||
6 | 6 | ||
7 | config NET_SCHED | 7 | config NET_SCHED |
8 | bool "QoS and/or fair queueing" | 8 | bool "QoS and/or fair queueing" |
9 | select NET_SCH_FIFO | ||
9 | ---help--- | 10 | ---help--- |
10 | When the kernel has several packets to send out over a network | 11 | When the kernel has several packets to send out over a network |
11 | device, it has to decide which ones to send first, which ones to | 12 | device, it has to decide which ones to send first, which ones to |
@@ -40,6 +41,9 @@ config NET_SCHED | |||
40 | The available schedulers are listed in the following questions; you | 41 | The available schedulers are listed in the following questions; you |
41 | can say Y to as many as you like. If unsure, say N now. | 42 | can say Y to as many as you like. If unsure, say N now. |
42 | 43 | ||
44 | config NET_SCH_FIFO | ||
45 | bool | ||
46 | |||
43 | if NET_SCHED | 47 | if NET_SCHED |
44 | 48 | ||
45 | choice | 49 | choice |
diff --git a/net/sched/Makefile b/net/sched/Makefile index 0f06aec66094..ff2d6e5e282c 100644 --- a/net/sched/Makefile +++ b/net/sched/Makefile | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | obj-y := sch_generic.o | 5 | obj-y := sch_generic.o |
6 | 6 | ||
7 | obj-$(CONFIG_NET_SCHED) += sch_api.o sch_fifo.o sch_blackhole.o | 7 | obj-$(CONFIG_NET_SCHED) += sch_api.o sch_blackhole.o |
8 | obj-$(CONFIG_NET_CLS) += cls_api.o | 8 | obj-$(CONFIG_NET_CLS) += cls_api.o |
9 | obj-$(CONFIG_NET_CLS_ACT) += act_api.o | 9 | obj-$(CONFIG_NET_CLS_ACT) += act_api.o |
10 | obj-$(CONFIG_NET_ACT_POLICE) += act_police.o | 10 | obj-$(CONFIG_NET_ACT_POLICE) += act_police.o |
@@ -14,6 +14,7 @@ obj-$(CONFIG_NET_ACT_MIRRED) += act_mirred.o | |||
14 | obj-$(CONFIG_NET_ACT_IPT) += act_ipt.o | 14 | obj-$(CONFIG_NET_ACT_IPT) += act_ipt.o |
15 | obj-$(CONFIG_NET_ACT_PEDIT) += act_pedit.o | 15 | obj-$(CONFIG_NET_ACT_PEDIT) += act_pedit.o |
16 | obj-$(CONFIG_NET_ACT_SIMP) += act_simple.o | 16 | obj-$(CONFIG_NET_ACT_SIMP) += act_simple.o |
17 | obj-$(CONFIG_NET_SCH_FIFO) += sch_fifo.o | ||
17 | obj-$(CONFIG_NET_SCH_CBQ) += sch_cbq.o | 18 | obj-$(CONFIG_NET_SCH_CBQ) += sch_cbq.o |
18 | obj-$(CONFIG_NET_SCH_HTB) += sch_htb.o | 19 | obj-$(CONFIG_NET_SCH_HTB) += sch_htb.o |
19 | obj-$(CONFIG_NET_SCH_HPFQ) += sch_hpfq.o | 20 | obj-$(CONFIG_NET_SCH_HPFQ) += sch_hpfq.o |