diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-12-23 08:12:15 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-12-23 08:12:15 +0000 |
commit | 3969ccfde44258a7d158be8a789ae64adab7e76f (patch) | |
tree | 20c5f25d2fbe63c4be17708bc65e6081d931da83 /target/linux/generic-2.6/patches-2.6.30 | |
parent | 917f4cf2a59283783be5b9a37a42226e4bffb448 (diff) | |
download | upstream-3969ccfde44258a7d158be8a789ae64adab7e76f.tar.gz upstream-3969ccfde44258a7d158be8a789ae64adab7e76f.tar.bz2 upstream-3969ccfde44258a7d158be8a789ae64adab7e76f.zip |
generic: ESFQ patch, only include net/netfilter/nf_conntrack.h when CONFIG_NET_SCH_ESFQ_NFCT is set (fixes build failure on target where CONFIG_NETFILTER is not set)
SVN-Revision: 18900
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.30')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.30/200-sched_esfq.patch | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.30/200-sched_esfq.patch b/target/linux/generic-2.6/patches-2.6.30/200-sched_esfq.patch index f72c0e3705..bf123ce780 100644 --- a/target/linux/generic-2.6/patches-2.6.30/200-sched_esfq.patch +++ b/target/linux/generic-2.6/patches-2.6.30/200-sched_esfq.patch @@ -90,7 +90,7 @@ obj-$(CONFIG_NET_SCH_PRIO) += sch_prio.o --- /dev/null +++ b/net/sched/sch_esfq.c -@@ -0,0 +1,700 @@ +@@ -0,0 +1,702 @@ +/* + * net/sched/sch_esfq.c Extended Stochastic Fairness Queueing discipline. + * @@ -144,7 +144,9 @@ +#include <net/sock.h> +#include <net/pkt_sched.h> +#include <linux/jhash.h> ++#ifdef CONFIG_NET_SCH_ESFQ_NFCT +#include <net/netfilter/nf_conntrack.h> ++#endif + +/* Stochastic Fairness Queuing algorithm. + For more comments look at sch_sfq.c. |